ffmpeg-mappable-media/src/FFMpeg/Format/Ogg.php
Romain Neutron 11345d6367 Initila Import
2012-04-13 10:20:54 +02:00

21 lines
No EOL
346 B
PHP

<?php
namespace FFMpeg\Format;
class Ogg extends DefaultFormat
{
protected $audioCodec = 'libvorbis';
protected $videoCodec = 'libtheora';
protected function getAvailableAudioCodecs()
{
return array('libvorbis');
}
protected function getAvailableVideoCodecs()
{
return array('libtheora');
}
}