Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.67 KB

README.md

File metadata and controls

44 lines (36 loc) · 1.67 KB

cordova-audio-stream-plugin

Basic cordova media plugin not allow to play radio audio stream on ios. This cordova plugin allow you to read a live radio stream

The android part of this plugin is from https://github.com/apache/cordova-plugin-media, I don't modify it

#Installation Run cordova plugin add https://github.com/werthad/cordova-audio-stream-plugin.git

#Use it my_stream = new Stream("http://your_live_radio_streeam", onSuccess, onError); // Play audio my_media.play(); function onSuccess() { console.log("playAudio():Audio Success"); } function onError(error) { alert('code: ' + error.code + '\n' + 'message: ' + error.message + '\n'); }

You can also stop the music with my_media.stop();