现在我有一个使用 jPlayer 流式传输 mp3 的网站。我还希望能够添加让 SoundCloud 直接在播放器上流式传输的功能。
我知道这是可能的,因为我最喜欢的音乐博客之一 hillydilly 就是这样做的。通过查看他们的代码,我看到他们的 jPlayer 设置有一些额外的参数,即 sc 和 sclink。
$(".play-music").each(function(){
myPlaylist.add({
title: $(this).attr('data-title'),
artist: $(this).attr('data-artist'),
mp3: $(this).attr('data-mp3'),
url: $(this).attr('data-url'),
sc: $(this).attr('data-sc'),
sclink: $(this).attr('data-sclink')
});
});
我尝试查看他们的其余代码,但无法弄清楚他们如何或在何处实现 sc 和 sclink。有什么帮助吗?