I am attempting to proxy an icecast stream using a PHP script:
<?php
set_time_limit(24*3600);
$s = fopen("http://127.0.0.1:8000/airtime.mp3","rb");
foreach ($http_response_header as $h) {
header($h);
}
while (!feof($s)) {
echo fread($s, 4096);
}
fclose($s);
?>
the concept behind it is that icecast can stay on port 8000, and then the stream will be on port 80 on a server already containg a webserver. In addition this should help protect the icecast server as direct access is not needed to it by the outside world.
This solution is working great on windows media player and VLC media player, however on my android phone the stream skips, garbles, and closes. Why is it doing this on my android device?