ffmpeg-mappable-media/src/FFMpeg/Format/Video/Resamplable.php

40 lines
725 B
PHP
Raw Normal View History

2012-05-30 12:22:22 +02:00
<?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\Video as BaseVideo;
/**
* The resamplable video interface
2012-05-30 12:26:06 +02:00
*
2012-05-30 12:22:22 +02:00
* This interface provides frame rate and GOP size settings for video encoding
2012-05-30 12:26:06 +02:00
*
2012-05-30 12:22:22 +02:00
* @author Romain Neutron imprec@gmail.com
*/
2012-05-30 15:06:53 +02:00
interface Resamplable extends BaseVideo
2012-05-30 12:22:22 +02:00
{
/**
* Returns the frame rate
*
* @return integer
*/
public function getFrameRate();
/**
* Returns the GOP size
*
* @return integer
*/
public function getGOPSize();
}