ffmpeg-mappable-media/src/FFMpeg/Format/Video/WebM.php
Romain Neutron 83408e985f Fix CS
2012-05-11 00:29:43 +02:00

49 lines
No EOL
859 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 WebM video format
*
* @author Romain Neutron imprec@gmail.com
*/
class WebM extends DefaultVideoFormat
{
protected $audioCodec = 'libvorbis';
protected $videoCodec = 'libvpx';
/**
* {@inheritDoc}
*/
public function getExtraParams()
{
return '-f webm';
}
/**
* {@inheritDoc}
*/
public function getAvailableAudioCodecs()
{
return array('libvorbis');
}
/**
* {@inheritDoc}
*/
public function getAvailableVideoCodecs()
{
return array('libvpx');
}
}