Skip to content

Instantly share code, notes, and snippets.

@pkorpine
Created December 19, 2016 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pkorpine/d2c2a0dd32c0482fe003ab9bfbf824a0 to your computer and use it in GitHub Desktop.
Save pkorpine/d2c2a0dd32c0482fe003ab9bfbf824a0 to your computer and use it in GitHub Desktop.
Redirect to Radio Rock's mp3 stream (which url keeps changing)
<?php
$url = 'http://www.radiorock.fi/api/content?tagCategory=info&page=0';
$data = file_get_contents($url);
preg_match('/http:\/\/icelive.*?mp3/', $data, $m);
$stream_url = $m[0];
header("Location: $stream_url");
exit();
?>
@pkorpine
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment