没有缓存的html5音频播放器

时间:2018-05-21 22:03:42

标签: html5 html5-audio no-cache

我希望有一个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();
});

0 个答案:

没有答案