Я использую Icecast 2 для прямой трансляции и трансляции.
Я хочу, чтобы при трансляции от вместо плеера показывать что-то еще, например, в следующий раз, когда трансляция на тогда покажи плеер для потоковой передачи.
Если вы используете Icecast 2.4.2, вы можете использовать status-json.xsl, чтобы проверить, есть ли какой-либо поток в данный момент на сервере.
<?php
/* Checks if any stream is running on the Icecast server at the
* specified URL.
* Returns TRUE if running, FALSE if not.
*
* It uses the status-json.xsl which is available since Icecast 2.4,
* although it was sometimes invalid before Icecast 2.4.1
* If connecting to the Icecast server fails, GETing the JSON fails or
* JSON decoding fails, this function will report FALSE.
*/
function is_stream_running($icecast_host, $icecast_port) {
$status_url = "http://{$icecast_host}:{$icecast_port}/status-json.xsl";
$status_dat = @file_get_contents($status_url);
if ($status_dat === FALSE) {
return FALSE;
}
$status_arr = json_decode($status_dat, true);
if ($status_arr === NULL || !isset($status_arr["icestats"])) {
return FALSE;
}
return ($status_arr["icestats"]["source"]) ? true : false;
}
var_dump(is_stream_running("localhost", 8000));
?>
Других решений пока нет …