Rename interfaces

This commit is contained in:
grosroro 2012-05-30 15:06:53 +02:00
commit 78bb1bd86e
13 changed files with 162 additions and 67 deletions

View file

@ -19,18 +19,19 @@ namespace FFMpeg\Format;
interface Audio
{
/**
* Returns the audio codec
*
* @return string
*/
public function getAudioCodec();
/**
* Get the kiloBitrate value
*
* @return integer
*/
public function getKiloBitrate();
/**
* Give som extra parameters to add to ffmpeg commandline
* Parameters MUST be escaped
*
* @return string
*/
public function getExtraParams();
}