Skip to content

Instantly share code, notes, and snippets.

@satsalou
Created March 24, 2016 14:19
Show Gist options
  • Save satsalou/954ed4331e377c23ecbd to your computer and use it in GitHub Desktop.
Save satsalou/954ed4331e377c23ecbd to your computer and use it in GitHub Desktop.
function play() {
// Display loader
if (window.Stream) {
stream = new window.Stream(audioStream);
// Play audio
stream.play();
}
// Hide loader after XXX sec
getStreamInfo();
timer = $interval(function() {
getStreamInfo();
}, 5000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment