1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/plugin/Live/view/loopBGHLS/index.ts.php
2022-01-06 21:30:01 +08:00

14 lines
296 B
PHP

<?php
header("Content-Type: video/mp2t");
if (empty($_GET['res'])) {
$_GET['res'] = 240;
}
$_GET['res'] = intval($_GET['res']);
if ($_GET['seq']%2) {
$filename = "res{$_GET['res']}/index1.ts";
} else {
$filename = "res{$_GET['res']}/index0.ts";
}
echo file_get_contents($filename);