This commit is contained in:
Romain Neutron 2012-05-11 00:29:43 +02:00
commit 83408e985f
6 changed files with 0 additions and 11 deletions

View file

@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat;
*/
class Ogg extends DefaultVideoFormat
{
protected $audioCodec = 'libvorbis';
protected $videoCodec = 'libtheora';
@ -39,5 +38,4 @@ class Ogg extends DefaultVideoFormat
{
return array('libtheora');
}
}

View file

@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat;
*/
class WebM extends DefaultVideoFormat
{
protected $audioCodec = 'libvorbis';
protected $videoCodec = 'libvpx';
@ -47,5 +46,4 @@ class WebM extends DefaultVideoFormat
{
return array('libvpx');
}
}

View file

@ -20,7 +20,6 @@ use FFMpeg\Format\DefaultVideoFormat;
*/
class X264 extends DefaultVideoFormat
{
protected $audioCodec = 'libmp3lame';
protected $videoCodec = 'libx264';
@ -39,5 +38,4 @@ class X264 extends DefaultVideoFormat
{
return array('libx264');
}
}