1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/plugin/Live/view/loopBGHLS/index.ts.php
2020-07-03 11:30:08 -03:00

14 lines
No EOL
304 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);
?>