Add resize mode, move getMultiple method to FFMpeg

This commit is contained in:
grosroro 2012-05-28 19:46:49 +02:00
commit fc7529822f
6 changed files with 185 additions and 62 deletions

View file

@ -18,6 +18,8 @@ namespace FFMpeg\Format;
*/
interface Video extends Audio
{
const RESIZEMODE_FIT = 'fit';
const RESIZEMODE_INSET = 'inset';
/**
* Returns the width
@ -33,6 +35,13 @@ interface Video extends Audio
*/
public function getHeight();
/**
* Get the current resize mode
*
* @return string
*/
public function getResizeMode();
/**
* Returns the frame rate
*