有没有办法获得Icecast流的广播状态?

时间:2015-08-21 04:57:18

标签: javascript php html5 icecast internet-radio

我正在使用Icecast 2进行直播和广播。

我希望广播关闭而不是播放器显示其他内容,例如下一个广播时间,当广播,然后显示播放器进行流媒体播放。

1 个答案:

答案 0 :(得分: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));

?>