Pony.fm/vendor/codescale/ffmpeg-php/provider/OutputProvider.php

26 lines
486 B
PHP
Raw Normal View History

2013-07-25 23:33:04 +02:00
<?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();
}