scratch – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
115 office 1 <?php
2  
3 /*
4 * This file is part of PHP-FFmpeg.
5 *
6 * (c) Alchemy <info@alchemy.fr>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11 namespace FFMpeg\Format;
12  
13 interface FormatInterface
14 {
15 /**
16 * Returns the number of passes.
17 *
18 * @return string
19 */
20 public function getPasses();
21  
22 /**
23 * Returns an array of extra parameters to add to ffmpeg commandline.
24 *
25 * @return array()
26 */
27 public function getExtraParams();
28 }