我一直试图弄清楚这几天,但我不知道为什么,但我似乎不知道如何使用这个插件。关于这个github的文档不多。
https://github.com/keosuofficial/cordova-audio-stream-plugin
到目前为止我做了什么/尝试
我通过
添加了插件cordova插件添加https://github.com/keosuofficial/cordova-audio-stream-plugin.git
我在index.html中添加了stream.js
我添加了这个功能我的代码
var my_stream = new Stream("http://audio.scdn.arkena.com/11689/goo_150739.mp3", onSuccess, onError);
// Play audio
my_stream.play();
function onSuccess() {
console.log("playAudio():Audio Success");
}
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}
我收到错误
undefined不是构造函数(评估'new Stream(“http://audio.scdn.arkena.com/11689/goo_150739.mp3”,onSuccess,onError)'),http://192.168.200.121:8100/js/app.js,Line:14