ionic2-radio icon indicating copy to clipboard operation
ionic2-radio copied to clipboard

Please update the app

Open joelelangovan1985 opened this issue 7 years ago • 4 comments

The app structure has changed and its not working now, please update it.

joelelangovan1985 avatar Mar 21 '17 12:03 joelelangovan1985

I will fix it soon!

imsingh avatar Mar 29 '17 06:03 imsingh

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

tva77 avatar Apr 30 '17 22:04 tva77

On Audio Object, set the preload attr to none. Like this:

    let audioFile = new Audio(url);
    audioFile.preload = none;

I hope this help.

imsingh avatar May 06 '17 18:05 imsingh

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 });

tva77 avatar May 06 '17 23:05 tva77