Add doc blocks
This commit is contained in:
parent
f89b820d78
commit
53efcb255f
5 changed files with 60 additions and 8 deletions
|
|
@ -13,12 +13,20 @@ namespace FFMpeg\Format\Audio;
|
|||
|
||||
use FFMpeg\Format\DefaultAudioFormat;
|
||||
|
||||
/**
|
||||
* The MP3 audio format
|
||||
*
|
||||
* @author Romain Neutron imprec@gmail.com
|
||||
*/
|
||||
class Mp3 extends DefaultAudioFormat
|
||||
{
|
||||
|
||||
protected $audioCodec = 'libmp3lame';
|
||||
|
||||
protected function getAvailableAudioCodecs()
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function getAvailableAudioCodecs()
|
||||
{
|
||||
return array('libmp3lame');
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue