mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 04:53:26 +00:00
73 lines
2.5 KiB
PHP
73 lines
2.5 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2013 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Media\Subdef;
|
|
|
|
/**
|
|
* Video Subdef
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
|
|
* @link www.phraseanet.com
|
|
*/
|
|
class Video extends Audio
|
|
{
|
|
const OPTION_SIZE = 'size';
|
|
const OPTION_BITRATE = 'bitrate';
|
|
const OPTION_FRAMERATE = 'fps';
|
|
const OPTION_VCODEC = 'vcodec';
|
|
const OPTION_GOPSIZE = 'GOPsize';
|
|
|
|
protected $options = array();
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->registerOption(new OptionType\Range(_('Bitrate'), self::OPTION_BITRATE, 100, 12000, 800));
|
|
$this->registerOption(new OptionType\Range(_('GOP size'), self::OPTION_GOPSIZE, 1, 300, 10));
|
|
$this->registerOption(new OptionType\Range(_('Dimension'), self::OPTION_SIZE, 64, 2000, 600, 16));
|
|
$this->registerOption(new OptionType\Range(_('Frame Rate'), self::OPTION_FRAMERATE, 1, 200, 20));
|
|
$this->registerOption(new OptionType\Enum(_('Video Codec'), self::OPTION_VCODEC, array('libx264', 'libvpx', 'libtheora'), 'libx264'));
|
|
$this->unregisterOption(self::OPTION_ACODEC);
|
|
$this->registerOption(new OptionType\Enum(_('Audio Codec'), self::OPTION_ACODEC, array('libfaac', 'libvo_aacenc', 'libmp3lame', 'libvorbis'), 'libfaac'));
|
|
}
|
|
|
|
public function getType()
|
|
{
|
|
return self::TYPE_VIDEO;
|
|
}
|
|
|
|
public function getDescription()
|
|
{
|
|
return _('Generates a video file');
|
|
}
|
|
|
|
public function getMediaAlchemystSpec()
|
|
{
|
|
if (! $this->spec) {
|
|
$this->spec = new \MediaAlchemyst\Specification\Video();
|
|
}
|
|
|
|
$size = $this->getOption(self::OPTION_SIZE)->getValue();
|
|
|
|
$this->spec->setAudioCodec($this->getOption(self::OPTION_ACODEC)->getValue());
|
|
$this->spec->setAudioSampleRate($this->getOption(self::OPTION_AUDIOSAMPLERATE)->getValue());
|
|
$this->spec->setAudioKiloBitrate($this->getOption(self::OPTION_AUDIOBITRATE)->getValue());
|
|
$this->spec->setKiloBitrate($this->getOption(self::OPTION_BITRATE)->getValue());
|
|
$this->spec->setVideoCodec($this->getOption(self::OPTION_VCODEC)->getValue());
|
|
$this->spec->setDimensions($size, $size);
|
|
$this->spec->setFramerate($this->getOption(self::OPTION_FRAMERATE)->getValue());
|
|
$this->spec->setGOPSize($this->getOption(self::OPTION_GOPSIZE)->getValue());
|
|
|
|
return $this->spec;
|
|
}
|
|
}
|