ffmpeg-mappable-media/src/FFMpeg/Format/Audio/Mp3.php
Romain Neutron 53efcb255f Add doc blocks
2012-04-13 15:42:10 +02:00

34 lines
No EOL
582 B
PHP

<?php
/*
* This file is part of PHP-FFmpeg.
*
* (c) Alchemy <info@alchemy.fr>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
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';
/**
* {@inheritDoc}
*/
public function getAvailableAudioCodecs()
{
return array('libmp3lame');
}
}