我希望有一个html5音频播放器播放没有缓存的shoutcast流。 我试过这里给出的答案Link 并尝试使用php文件加载流,
但它对我不起作用,我做错了什么? 所以我使用的脚本是......
<audio id="audio" autoplay="" controls="" src="<shoutcast ip>+<port>/stream.mp3" type="audio/mpeg"></audio>
和脚本:
document.getElementById('audio').addEventListener("ended",function() {
this.src = "<shoutcast ip>+<port>/stream.mp3?nocache="+new Date().getTime();
this.play();
});