我正在使用 Soundmanager 2 播放 mp3 音频流。不知何故,onload 事件不会在 Firefox 中触发。在 Safari 和 Chrom 中它运行良好。当我将自动播放设置为 true 时,即使在 Firefox 中也将播放流,它只是 onload 事件女巫不起作用。
soundManager.setup({
url: '/static/soundmanager2/swf',
flashVersion: 9,
preferFlash: false,
useHTML5Audio: true,
onready: function() {
var options = {
id: 'channel-'+num,
url: chan.url,
stream: true,
onload: function() { alert("loaded"); },
volume: 50,
autoPlay:true
};
this.SM = soundManager.createSound(options)
}
});