2016-12-12 07:30:34 +00:00
|
|
|
<?php
|
2017-06-26 11:06:58 +00:00
|
|
|
// Shoutcast
|
2018-05-17 09:30:49 +00:00
|
|
|
function getIDshout($radioip,$radioport,$postfix = "GET /7.html HTTP/1.1\nUser-Agent:Mozilla\n\n") {
|
2016-12-12 07:30:34 +00:00
|
|
|
$open = fsockopen($radioip,$radioport,$errno,$errstr,'.5');
|
|
|
|
if ($open) {
|
2018-05-17 09:30:49 +00:00
|
|
|
fputs($open,$postfix);
|
|
|
|
stream_set_timeout($open,'1');
|
|
|
|
$read = fread($open,255);
|
|
|
|
$exploded = explode(",",$read);
|
|
|
|
if ($exploded[6] == '' || $exploded[6] == '</body></html>') {
|
|
|
|
$text = 'streaming'; } else { $text = $exploded[6];
|
|
|
|
}
|
|
|
|
$id = str_replace("</body></html>","",$text);
|
2016-12-12 07:30:34 +00:00
|
|
|
} else { return false; }
|
2017-11-10 19:44:03 +00:00
|
|
|
fclose($open);
|
|
|
|
return $id;
|
2018-05-17 09:30:49 +00:00
|
|
|
}
|
2017-06-26 11:06:58 +00:00
|
|
|
// Icecast
|
|
|
|
// https://stackoverflow.com/a/17109654
|
2018-05-17 09:30:49 +00:00
|
|
|
function getIDice($streamingUrl, $interval, $offset = 0, $headers = true) {
|
|
|
|
$needle = 'StreamTitle=';
|
|
|
|
$ua = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36';
|
|
|
|
$opts = [
|
|
|
|
'http' => [
|
|
|
|
'method' => 'GET',
|
|
|
|
'header' => 'Icy-MetaData: 1',
|
|
|
|
'user_agent' => $ua
|
|
|
|
]
|
|
|
|
];
|
|
|
|
if (($headers = get_headers($streamingUrl)))
|
|
|
|
foreach ($headers as $h)
|
|
|
|
if (strpos(strtolower($h), 'icy-metaint') !== false && ($interval = explode(':', $h)[1]))
|
|
|
|
break;
|
|
|
|
$context = stream_context_create($opts);
|
|
|
|
if ($stream = fopen($streamingUrl, 'r', false, $context)) {
|
|
|
|
$buffer = stream_get_contents($stream, $interval, $offset);
|
|
|
|
fclose($stream);
|
|
|
|
if (strpos($buffer, $needle) !== false) {
|
|
|
|
$title = explode($needle, $buffer)[1];
|
|
|
|
return substr($title, 1, strpos($title, ';') - 2);
|
|
|
|
} else
|
|
|
|
return getMp3StreamTitle($streamingUrl, $interval, $offset + $interval, false);
|
|
|
|
} else
|
|
|
|
throw new Exception("Unable to open stream [{$streamingUrl}]");
|
|
|
|
}
|
2016-12-12 07:30:34 +00:00
|
|
|
|
2018-05-17 09:30:49 +00:00
|
|
|
echo "id:;:";
|
|
|
|
echo stristr(getIDshout("93.100.61.75","8000")," * anima.sknt.ru",true); // Anima Amoris [Dub Techno]
|
|
|
|
echo ":;:";
|
|
|
|
echo stristr(getIDshout("93.100.61.75","8024")," * anima.sknt.ru",true); // Anima Amoris [DubTech Mix]
|
|
|
|
echo ":;:";
|
2019-08-02 13:31:09 +00:00
|
|
|
try {
|
|
|
|
echo getIDice("http://176.31.107.8:8133/stream", 19200);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
echo "unavailable";
|
|
|
|
}
|
2018-05-17 09:30:49 +00:00
|
|
|
echo ":;:";
|
|
|
|
echo getIDshout("79.120.39.202","9009"); // Radio Caprice - Dub Techno
|
|
|
|
echo ":;:";
|
|
|
|
echo getIDice("http://audio-online.net:8015/live", 19200); // Loca FM Dub Techno
|
|
|
|
echo ":;:";
|
2020-05-02 10:00:12 +00:00
|
|
|
echo getIDshout("94.23.115.253","12005","GET /7.html?sid=1 HTTP/1.1\nUser-Agent:Mozilla\n\n"); // Chillkyway - outer space
|
2018-05-17 09:30:49 +00:00
|
|
|
echo ":;:";
|
2019-08-02 13:31:09 +00:00
|
|
|
try {
|
|
|
|
echo getIDice("http://94.130.113.214:8000/dubtechno", 19200); // Schizoid Dub Techno
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
echo "unavailable";
|
|
|
|
}
|
2018-05-17 09:30:49 +00:00
|
|
|
echo ":;:";
|
2019-08-02 13:31:09 +00:00
|
|
|
try {
|
|
|
|
throw new Exception("error");
|
|
|
|
echo getIDice("http://pub2.diforfree.org:8000/di_dubtechno_hi", 19200); // Digitally Imported Dub Techno
|
|
|
|
} catch (Exception $e) {
|
|
|
|
echo "unavailable [commercial]";
|
|
|
|
}
|
2018-05-17 09:30:49 +00:00
|
|
|
echo ":;:";
|
2017-11-10 19:44:03 +00:00
|
|
|
?>
|