Fix CS
This commit is contained in:
parent
26ede7fa87
commit
83408e985f
6 changed files with 0 additions and 11 deletions
|
|
@ -15,5 +15,4 @@ interface AdapterInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
public static function load(\Monolog\Logger $logger);
|
public static function load(\Monolog\Logger $logger);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultAudioFormat;
|
||||||
*/
|
*/
|
||||||
class Flac extends DefaultAudioFormat
|
class Flac extends DefaultAudioFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $audioCodec = 'flac';
|
protected $audioCodec = 'flac';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -30,5 +29,4 @@ class Flac extends DefaultAudioFormat
|
||||||
{
|
{
|
||||||
return array('flac');
|
return array('flac');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultAudioFormat;
|
||||||
*/
|
*/
|
||||||
class Mp3 extends DefaultAudioFormat
|
class Mp3 extends DefaultAudioFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $audioCodec = 'libmp3lame';
|
protected $audioCodec = 'libmp3lame';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -30,5 +29,4 @@ class Mp3 extends DefaultAudioFormat
|
||||||
{
|
{
|
||||||
return array('libmp3lame');
|
return array('libmp3lame');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat;
|
||||||
*/
|
*/
|
||||||
class Ogg extends DefaultVideoFormat
|
class Ogg extends DefaultVideoFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $audioCodec = 'libvorbis';
|
protected $audioCodec = 'libvorbis';
|
||||||
protected $videoCodec = 'libtheora';
|
protected $videoCodec = 'libtheora';
|
||||||
|
|
||||||
|
|
@ -39,5 +38,4 @@ class Ogg extends DefaultVideoFormat
|
||||||
{
|
{
|
||||||
return array('libtheora');
|
return array('libtheora');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat;
|
||||||
*/
|
*/
|
||||||
class WebM extends DefaultVideoFormat
|
class WebM extends DefaultVideoFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $audioCodec = 'libvorbis';
|
protected $audioCodec = 'libvorbis';
|
||||||
protected $videoCodec = 'libvpx';
|
protected $videoCodec = 'libvpx';
|
||||||
|
|
||||||
|
|
@ -47,5 +46,4 @@ class WebM extends DefaultVideoFormat
|
||||||
{
|
{
|
||||||
return array('libvpx');
|
return array('libvpx');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat;
|
||||||
*/
|
*/
|
||||||
class X264 extends DefaultVideoFormat
|
class X264 extends DefaultVideoFormat
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $audioCodec = 'libmp3lame';
|
protected $audioCodec = 'libmp3lame';
|
||||||
protected $videoCodec = 'libx264';
|
protected $videoCodec = 'libx264';
|
||||||
|
|
||||||
|
|
@ -39,5 +38,4 @@ class X264 extends DefaultVideoFormat
|
||||||
{
|
{
|
||||||
return array('libx264');
|
return array('libx264');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue