mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
26 lines
No EOL
486 B
PHP
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();
|
|
} |