Pony.fm/vendor/codescale/ffmpeg-php/provider/OutputProvider.php
2013-07-25 16:33:12 -05:00

26 lines
No EOL
486 B
PHP

<?php
/**
* OutputProvider interface of all output providers
*
* @author char0n (Vladimír Gorej, gorej@codescale.net)
* @package FFmpegPHP
* @subpackage provider
* @license New BSD
* @version 2.6
*/
interface OutputProvider {
/**
* Setting movie file path
*
* @param string $movieFile
*/
public function setMovieFile($movieFile);
/**
* Getting parsable output
*
* @return string
*/
public function getOutput();
}