我似乎無法使用soundcloud API在IE8中傳輸音軌。soundcloud streaming IE8
在其他瀏覽器(也包括IE9和IE10)中正常工作。
The stream demo on the soundcloud docs也沒有爲我工作在IE8
...
SC.stream("/tracks/" + _model.id, function(sound) {
_sound = sound;
_sound.play({
whileplaying: onPlaying,
onpause: onPaused,
onplay: onPlayed,
onresume: onPlayed,
onfinish: onFinished
});
});
...
或者這是一個SoundManager類的問題?當我嘗試流式傳輸時,我可以看到聲音管理器文件被請求,然後,沒有更多,而它應該加載閃回等。(它在IE9中例如)
這只是不支持IE8或。 ..?
我猜它與CORS有關。雖然不確定... – ThomasM