gpt4 book ai didi

javascript - 从 Shoutcast 读取歌曲

转载 作者:行者123 更新时间:2023-11-30 15:30:54 27 4
gpt4 key购买 nike

我正在处理 PHP/HTML 脚本。

我想在歌曲更改时通过自动刷新获取 Shoutcast 流的当前歌曲。

Shoutcast 不允许 HTTP 请求,所以我使用这个脚本在另一个文件中获取页面:

<?php
$lurl=get_fcontent("http://5.135.39.189:8000/");
echo"cid:".$lurl[0]."<BR>";


function get_fcontent( $url, $javascript_loop = 0, $timeout = 5 ) {
$url = str_replace( "&amp;", "&", urldecode(trim($url)) );

$cookie = tempnam ("/tmp", "CURLCOOKIE");
$ch = curl_init();
curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1" );
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie );
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true );
curl_setopt( $ch, CURLOPT_ENCODING, "" );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $ch, CURLOPT_AUTOREFERER, true );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false ); # required for https urls
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout );
curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 );
$content = curl_exec( $ch );
$response = curl_getinfo( $ch );
curl_close ( $ch );

if ($response['http_code'] == 301 || $response['http_code'] == 302) {
ini_set("user_agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1");

if ( $headers = get_headers($response['url']) ) {
foreach( $headers as $value ) {
if ( substr( strtolower($value), 0, 9 ) == "location:" )
return get_url( trim( substr( $value, 9, strlen($value) ) ) );
}
}
}

if ( ( preg_match("/>[[:space:]]+window\.location\.replace\('(.*)'\)/i", $content, $value) || preg_match("/>[[:space:]]+window\.location\=\"(.*)\"/i", $content, $value) ) && $javascript_loop < 5) {
return get_url( $value[1], $javascript_loop+1 );
} else {
return array( $content, $response );
}
}

?>

然后我使用另一个文件通过 HTML DOM 解析器读取这个文件,但我找不到要读取的正确字符串。执行此操作的更好方法是什么?

最佳答案

从名为 7.html 的特殊 Shoutcast 页面请求当前轨道标题要容易得多:

http://5.135.39.189:8000/7.html

用逗号分隔该数据,您将获得听众数量、比特率和当前轨道标题

关于javascript - 从 Shoutcast 读取歌曲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42255629/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com