for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the PHP-FFmpeg-video-streaming package.
*
* (c) Amin Yazdanpanah <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Streaming\Format;
* The VP9 video format
final class VP9 extends Video
{
public function __construct($videoCodec = 'libvpx-vp9')
$this->setVideoCodec($videoCodec);
}
* {@inheritDoc}
public function getAvailableAudioCodecs()
return array();
public function getAvailableVideoCodecs()
return array('libvpx', 'libvpx-vp9');