Sound Cloud自定义播放器无法播放

时间:2012-07-10 04:18:22

标签: audio streaming audio-streaming soundcloud

我正在尝试按照here的指示设置一个示例Sound Cloud播放器。我最终得到了一个index.html页面,如下所示:

<!DOCTYPE HTML>
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Sample SC</title>
    <link rel="stylesheet" href="css/sc-player-standard.css" type="text/css">
    <script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
    <script type="text/javascript" src="js/soundcloud.player.api.js"></script>
    <script type="text/javascript" src="js/sc-player.js"></script>
  </head>
  <body>
    <a href="http://soundcloud.com/matas" class="sc-player">My latest tracks</a>
  </body>
</html>

当我加载页面时,一切看起来都正确并且看起来很实用(即:您可以选择曲目,点击“播放”图标将其变为'暂停'图标,我可以看到封面图片),但没有音频播放并且轨道的经过时间永远不会开始。我只是通过python服务器查看本地机器上的页面。还有什么我应该做的吗?

提前致谢,

1 个答案:

答案 0 :(得分:1)

您使用的浏览器是什么?我复制并粘贴了您的代码,并在Mac OS X上的Safari,Firefox和Chrome以及iOS上的Safari中进行了测试。试试这个版本,看看它是否适合你:

http://dl.dropbox.com/u/14333604/demos/custom-player/index.html

如果有效,请发表评论,然后我会用其他一些关于调试的想法编辑我的答案。