ffmpeg-mappable-media/src/FFMpeg/Format/Audio/Flac.php
2012-05-25 20:53:56 +02:00

32 lines
559 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\DefaultAudio;
/**
* The Flac audio format
*
* @author Romain Neutron imprec@gmail.com
*/
class Flac extends DefaultAudio
{
protected $audioCodec = 'flac';
/**
* {@inheritDoc}
*/
public function getAvailableAudioCodecs()
{
return array('flac');
}
}