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;
final class HEVC extends Video
{
* HEVC constructor.
* @param string $video_codec
* @param string|null $audio_codec
public function __construct(string $video_codec = 'libx265', string $audio_codec = null)
$this->setVideoCodec($video_codec);
if($audio_codec){
$this->setAudioCodec($audio_codec);
}
* Returns the list of available audio codecs for this format.
* @return array
public function getAvailableAudioCodecs()
return [''];
protected function getAvailableVideoCodecs(): array
return ['libx265', 'h265'];