49 lines
No EOL
859 B
PHP
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');
|
|
}
|
|
} |