使用JavaScript流soundcloud轨道不起作用

时间:2015-02-07 22:09:17

标签: javascript audio stream soundcloud

你能帮助我吗? : 我想从我的soundcloud曲目中制作一个列表,当我用JavaScript点击它时播放任何曲目,但它不能与我合作:(

html文件

<script src="//connect.soundcloud.com/sdk.js"></script> 
<body>
    <ol id="track-list"></ol> 
</body>

js file:

function PlayIt(ID){
    SC.stream("/tracks"+ID, function(sound){
     soundManager.stopAll();
     sound.play();
    });

}



SC.initialize({
      client_id: "YOUR_CLIENT_ID",
      redirect_uri: "http://example.com/callback.html",
  });

/**
Once that's done you are all set and ready to call the SoundCloud API. 
**/



/**
Call to the SoundCloud API. 
Retrieves list of tracks, and displays a list with links to the tracks showing 'tracktitle' and 'track duration'
**/

  var userId = 39090345; // user_id of Prutsonic

  SC.get("/tracks", {
      user_id: userId,
      limit: 100
  }, function (tracks) {

      var tmp = '';

      for (var i = 0; i < tracks.length; i++) {
        var TrackId=tracks[i].id;
          tmp = '<a href="#" onclick="PlayIt('+TrackId +')">' + tracks[i].title + ' - ' + tracks[i].duration + '</a>';

          $("<li/>").html(tmp).appendTo("#track-list");
      }

  });

你也可以在这里查看: http://jsfiddle.net/26pHX/96/

*这不是我的代码,但我试着让它变得更好

2 个答案:

答案 0 :(得分:0)

好像你的代码中需要一个客户端ID。您还需要一个重定向网址。我不确定这是什么预期,但我现在尝试将它随机送到一个随机页面,因为它们的示例页面似乎没什么特别的。

答案 1 :(得分:0)

我发现这部分是问题所在:

  

onclick =“PlayIt('+ TrackId +')

我使用document.createElement('a')制作标签,然后使用(element).setAttribute('the_attribute','the_value')设置其属性; 一切都运作良好。