2012-04-13 10:20:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
2012-04-13 14:34:53 +02:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2012-04-13 10:20:54 +02:00
|
|
|
namespace FFMpeg\Format;
|
|
|
|
|
|
2012-05-25 16:21:16 +02:00
|
|
|
/**
|
|
|
|
|
* The video format interface
|
|
|
|
|
*
|
|
|
|
|
* @author Romain Neutron imprec@gmail.com
|
|
|
|
|
*/
|
2012-05-25 20:53:56 +02:00
|
|
|
interface Video extends Audio
|
2012-04-13 10:20:54 +02:00
|
|
|
{
|
2012-05-28 19:46:49 +02:00
|
|
|
const RESIZEMODE_FIT = 'fit';
|
|
|
|
|
const RESIZEMODE_INSET = 'inset';
|
2012-04-13 10:20:54 +02:00
|
|
|
|
2012-05-25 16:21:16 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the width
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
2012-04-13 10:20:54 +02:00
|
|
|
public function getWidth();
|
|
|
|
|
|
2012-05-25 16:21:16 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the height
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
2012-04-13 10:20:54 +02:00
|
|
|
public function getHeight();
|
|
|
|
|
|
2012-05-28 19:46:49 +02:00
|
|
|
/**
|
|
|
|
|
* Get the current resize mode
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getResizeMode();
|
|
|
|
|
|
2012-05-25 16:21:16 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the frame rate
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
2012-04-13 10:20:54 +02:00
|
|
|
public function getFrameRate();
|
|
|
|
|
|
2012-05-25 16:21:16 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the video codec
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2012-04-13 10:20:54 +02:00
|
|
|
public function getVideoCodec();
|
|
|
|
|
|
2012-05-25 16:21:16 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the GOP size
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
2012-04-13 10:20:54 +02:00
|
|
|
public function getGOPSize();
|
|
|
|
|
|
2012-04-27 00:48:57 +02:00
|
|
|
/**
|
|
|
|
|
* Returns the list of available video codecs for this format
|
|
|
|
|
*
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
2012-04-13 15:42:34 +02:00
|
|
|
public function getAvailableVideoCodecs();
|
2012-05-25 15:44:43 +02:00
|
|
|
}
|