如何用Radio Stream脚本的访问者IP替换服务器的位置?

时间:2019-07-05 22:54:57

标签: php radio

我正在使用流脚本,因此可以在我的网站上放置SSL广播流。我的脚本存在问题,它使用的是服务器的位置而不是访问者的IP。

为什么这是个问题?

广播中的广告是根据访问者的位置自动确定的。目前,您只听到德语广告。

<?php 

header('Content-Type: audio/mpeg');

$server = "IP RADIO SERVER";
$port = "PORT RADIO SERVER";
$mount = "1";

// HTTP Radio Stream URL with Mount Point
$url = "http://".$server.":".$port."/".$mount;

// Open Radio Stream URL
// Make Sure Radio Stream [Port] must be open / allow in this script hosting server firewall 
$f=fopen($url,'r');

// Read chunks maximum number of bytes to read
if(!$f) exit;
while(!feof($f))
{
    echo fread($f,128);  
    flush();
}
fclose($f);

?>

0 个答案:

没有答案