Initila Import

This commit is contained in:
Romain Neutron 2012-04-13 10:20:54 +02:00
commit 11345d6367
17 changed files with 773 additions and 0 deletions

21
src/FFMpeg/Format/Ogg.php Normal file
View file

@ -0,0 +1,21 @@
<?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');
}
}