<?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();
}