如何检测是否存在icecast / shoutcast流?

时间:2013-03-11 16:55:52

标签: php audio audio-streaming shoutcast icecast

网站上有5个流。我需要检测这些流是否存在。如果没有,则可以使用一些音频文件。

我正在使用html5来播放流,流网址看起来像这样:

http://locus.creacast.com:9001/StBaume_grotte.ogg

我尝试了不同的东西,但似乎没有用。从未检测到流。

解决方案1: 在这里,我只是试图检查文件是否存在。

if (file_exists($stream_1)) {
             $debug_output_stream_1 = "Le fichier $stream_1 existe.";
             $erreur_404_Stream_1 = true;  
        } else {
             $debug_output_stream_1 =  "Le fichier $stream_1 n'existe pas.";
             $erreur_404_Stream_1 = false;  
        }

解决方案2: 我尝试检测404错误

 $file_headers_1 = @get_headers($stream_1);
        if($file_headers_1[0] == 'HTTP/1.1 404 Not Found') {
            $debug_output_stream_1 = "StBaume_sommet.ogg : L'URL n'existe pas.";
            $erreur_404_Stream_1 = true;  
        }
        else {
            $debug_output_stream_1 = "StBaume_sommet.ogg : L'URL existe.";
            $erreur_404_Stream_1 = false;
        }

您知道如何检查流是否存在吗?

1 个答案:

答案 0 :(得分:4)

您正在检查整个状态行,包括HTTP版本HTTP/1.1。大多数服务器返回HTTP/1.0。您只需要检查状态代码。

if (strpos($file_headers_1[0], '200 OK') === false) {
    // error occurred
}