| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 31 | */ |
||
| 32 | private static function contents(array $reps, string $manifests): string |
||
| 33 | { |
||
| 34 | $content = ["#EXTM3U", "#EXT-X-VERSION:3"]; |
||
| 35 | foreach ($reps as $rep) { |
||
| 36 | $content[] = "#EXT-X-STREAM-INF:BANDWIDTH=" . $rep->getKiloBitrate() * 1024 . ",RESOLUTION=" . $rep->getResize(); |
||
| 37 | $content[] = $manifests . "_" . $rep->getHeight() . "p.m3u8"; |
||
| 38 | } |
||
| 39 | |||
| 40 | return implode(PHP_EOL, $content); |
||
| 42 | } |