Version 0.3

This commit is contained in:
Romain Neutron 2013-06-25 10:03:20 +02:00
commit ad3a5af623
130 changed files with 7283 additions and 2627 deletions

View file

@ -8,23 +8,16 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FFMpeg\Format;
/**
* The base audio interface
*
* @author Romain Neutron imprec@gmail.com
*/
interface AudioInterface
interface AudioInterface extends FormatInterface
{
/**
* Get the kiloBitrate value
* Get the audio kiloBitrate value
*
* @return integer
*/
public function getKiloBitrate();
public function getAudioKiloBitrate();
/**
* Return an array of extra parameters to add to ffmpeg commandline
@ -33,4 +26,17 @@ interface AudioInterface
*/
public function getExtraParams();
/**
* Returns the audio codec
*
* @return string
*/
public function getAudioCodec();
/**
* Returns the list of available audio codecs for this format
*
* @return array
*/
public function getAvailableAudioCodecs();
}