Skip to content

Instantly share code, notes, and snippets.

@appnus
Created November 22, 2014 02:32
Show Gist options
  • Save appnus/490317ab8072a99aa606 to your computer and use it in GitHub Desktop.
Save appnus/490317ab8072a99aa606 to your computer and use it in GitHub Desktop.
Stream MP3 Songs using PHP
<?php header("Content-Type: audio/mpeg");
$playlist = glob("*.mp3");
shuffle($playlist);
foreach ($playlist as $song) {
$file = fopen($song, "r");
while (($buffer = fgets($file, 1024)) !== false) {
echo $buffer;
flush();
usleep(5000);
}
fclose($file);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment