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?

link|improve this question
Can you post a packet capture? I don't see why this shouldn't be working, since you clone all of the headers and what not. – Brad Jan 30 at 17:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.