目前我正在使用网址为音频代码生成src=""
,如下所示:
<audio src="http://api.soundcloud.com/tracks/81827374/stream?client_id=my_id" controls>
</audio>
然而,在Firefox和Opera浏览器中似乎不支持这样的文件格式(mp3),因此我需要提供其他格式,我认为它们看起来像:
<audio preload="auto" controls>
<source src="some link for .wav file" />
<source src="some link for .mp3 file" />
<source src="some link for .ogg file" />
</audio>
这是通过soundcloud api实现的吗?
答案 0 :(得分:2)
不幸的是,目前我们不提供MP3以外的编码。
要在不支持MP3(Firefox will probably get this support some time soon)的浏览器中播放音频,您需要使用Audio5JS或SoundManager2等库。