我正在尝试使用声音管理器http://www.schillmania.com/projects/soundmanager2/demo/api/在线播放广播,但我遇到了一些问题......我在控制台中看到我正在获取流,但是没玩过...
这是我的示例代码:
var fortyeight = soundManager.createSound({
url: 'http://stream.timlradio.co.uk/ABSOLUTECRIRAACS?type=.flv'
});
if (!fortyeight.loaded) {
// first time loading/playing
fortyeight.load({
stream: false,
onload: function() {
// sound has fully-loaded
this.play();
}
});
} else {
// sound has already loaded
fortyeight.play();
}
有什么线索吗?