我正在尝试从 soundcloud 用户流式传输曲目。我有客户 ID 并且拉动轨道工作正常。但是当我尝试播放曲目时,它不起作用。这是我在onload()
网页中使用的代码。
<script>
function pageload()
{
SC.initialize({
client_id: {MY CLIENT ID}
});
SC.stream("/tracks/{MY TRACK ID}", function(sound){
sound.play();
});
}
</script>
注意:我也包含了 soundmanagerjs。
在控制台中我得到一个错误。
[23:38:44.140] -- SoundManager 2: HTML5 support tests (/^(probably|maybe)$/i): mp3: false (using flash), mp4: false (using flash), ogg: true, wav: true
[23:38:44.199] sound.play is not a function