ionic2-radio
ionic2-radio copied to clipboard
Please update the app
The app structure has changed and its not working now, please update it.
I will fix it soon!
nice code, but how to stop the streamming? I mean, even when you click pause, the file keeps downloading from streamming server. How to stop this download? Thank you
On Audio Object, set the preload attr to none. Like this:
let audioFile = new Audio(url);
audioFile.preload = none;
I hope this help.
I solved like this:
this.stream.pause(); var temp = this; setTimeout(function () { temp.stream.src = "about:blank"; temp.stream.load(); // This stops the stream from downloading });