* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FFMpeg\Format\Video; /** * The X264 video format */ class X264 extends DefaultVideo { public function __construct($audioCodec = 'libfaac', $videoCodec = 'libx264') { $this ->setAudioCodec($audioCodec) ->setVideoCodec($videoCodec); } /** * {@inheritDoc} */ public function supportBFrames() { return true; } /** * {@inheritDoc} */ public function getAvailableAudioCodecs() { return array('libvo_aacenc', 'libfaac', 'libmp3lame'); } /** * {@inheritDoc} */ public function getAvailableVideoCodecs() { return array('libx264'); } /** * {@inheritDoc} */ public function getPasses() { return 2; } public function getModulus() { return 2; } }