mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-29 16:17:59 +01:00
26 lines
486 B
PHP
26 lines
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();
|
||
|
}
|