Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function apply(Video $video, VideoInterface $format) |
||
40 | { |
||
41 | return [ |
||
42 | '-map', |
||
43 | '0', |
||
44 | '-flags', |
||
45 | '-global_header', |
||
46 | '-f', |
||
47 | 'segment', |
||
48 | '-segment_format', |
||
49 | 'mpeg_ts', |
||
50 | '-segment_list', |
||
51 | $this->getPlaylistPath(), |
||
52 | '-segment_time', |
||
53 | $this->getSegmentLength(), |
||
54 | ]; |
||
55 | } |
||
56 | } |
||
57 |