Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | abstract class Video extends DefaultAudio |
||
17 | { |
||
18 | /** @var string */ |
||
19 | protected $videoCodec; |
||
20 | |||
21 | protected $audioKiloBitrate = null; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getVideoCodec(): string |
||
27 | { |
||
28 | return $this->videoCodec; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param string $videoCodec |
||
33 | */ |
||
34 | public function setVideoCodec(string $videoCodec): void |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Returns an array of extra parameters to add to ffmpeg commandline. |
||
41 | * |
||
42 | * @return array() |
||
43 | */ |
||
44 | public function getExtraParams() |
||
51 | } |