本文介绍了Soundmanager如何解释Soundcloud流?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用内联播放器"演示.
using the "inline player" demo.
<li><a href="http://api.soundcloud.com/tracks/42021012/stream.json?client_id=[myclientID]">play song</a></li>
将带我到mp3链接,但是由于它的末尾有更多参数,因此soundmanager不会将其作为mp3加载.
that will take me to a mp3 link, but since it has more parameters at the end, soundmanager doesn't load it as a mp3.
推荐答案
尝试在最后添加& filename = soundcloud.mp3.
Try adding &filename=soundcloud.mp3 at the end.
<li><a href="http://api.soundcloud.com/tracks/42021012/stream.json?client_id=[myclientID]&filename=soundcloud.mp3">play song</a></li>
这篇关于Soundmanager如何解释Soundcloud流?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!