mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
14 lines
296 B
PHP
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);
|