ffmpeg-mappable-media/src/FFMpeg/Format/Video/Ogg.php
Romain Neutron 53efcb255f Add doc blocks
2012-04-13 15:42:10 +02:00

43 lines
No EOL
752 B
PHP

<?php
/*
* This file is part of PHP-FFmpeg.
*
* (c) Alchemy <info@alchemy.fr>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FFMpeg\Format\Video;
use FFMpeg\Format\DefaultVideoFormat;
/**
* The Ogg video format
*
* @author Romain Neutron imprec@gmail.com
*/
class Ogg extends DefaultVideoFormat
{
protected $audioCodec = 'libvorbis';
protected $videoCodec = 'libtheora';
/**
* {@inheritDoc}
*/
public function getAvailableAudioCodecs()
{
return array('libvorbis');
}
/**
* {@inheritDoc}
*/
public function getAvailableVideoCodecs()
{
return array('libtheora');
}
}