Add resize mode, move getMultiple method to FFMpeg
This commit is contained in:
parent
1424af7703
commit
fc7529822f
6 changed files with 185 additions and 62 deletions
|
|
@ -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
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue