Files
streamshifter/m3u8.php
2018-02-14 12:04:42 -08:00

20 lines
417 B
PHP

<?php
header("Content-Type: audio/mpegurl");
?>
#EXTM3U
#EXT-X-TARGETDURATION:10
<?php
$prefix=$_GET["name"];
if ($prefix=="")
$prefix="limbaugh";
$n=1;
while (file_exists($prefix."-".$n.".ts"))
{
echo "#EXTINF:10,\n";
echo $prefix."-".$n.".ts"."\n";
$n++;
}
if (file_get_contents($prefix.".m3u8", NULL, NULL, filesize($prefix.".m3u8")-8)=="ENDLIST\n")
echo "#EXT-X-ENDLIST\n";
?>