Skip to content

Instantly share code, notes, and snippets.

@steve-todorov
Created November 29, 2014 01:34
Show Gist options
  • Save steve-todorov/ff8ebe614c8ef7e9e611 to your computer and use it in GitHub Desktop.
Save steve-todorov/ff8ebe614c8ef7e9e611 to your computer and use it in GitHub Desktop.
play-radio.php
<?php
set_time_limit(-1);
$url = 'http://pub1.di.fm:80/di_chillstep_aac?bf3465a6e064e83f';
header("Content-type: audio/mpeg");
$handle = fopen($url, "r");
while($buffer = stream_get_contents($handle, 4096)) {
echo $buffer;
}
fclose($handle);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment