mirror of
https://github.com/pkali/piradio-mini.git
synced 2026-05-20 22:34:22 +02:00
11 lines
348 B
PHP
Executable File
11 lines
348 B
PHP
Executable File
<?php
|
|
$line1 = file_get_contents( "/tmp/radiod/line1.txt" );
|
|
$czyplayer = strpos($line1, "*");
|
|
if ($czyplayer != false) {
|
|
list($realHost,)=explode(':',$_SERVER['HTTP_HOST']);
|
|
echo '<audio controls><source src="http://';
|
|
echo $realHost;
|
|
echo ':8001/mpd" type="audio/mp3">Your browser does not support the audio element.</audio>';
|
|
}
|
|
?>
|