2具有不同SRC的音频元素播放相同的文件

时间:2015-03-16 16:28:33

标签: html5 audio shoutcast

我正在使用SHOUTcast来广播多个无线电流。出于某种原因,当一个页面上存在两个音频元素时,尽管它们不同,但它们都播放相同的源。

请参阅屏幕截图:http://screencast.com/t/0ZQ8XOKq

===

我不明白这一点。

1 个答案:

答案 0 :(得分:0)

不确定区别是什么,但我能够使用此代码。



<!DOCTYPE html>
<html>
<body>

<audio controls id="1">
  <source src="http://live.soundcheck.xyz:8000/scur" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<audio controls id="2">
  <source src="http://live.soundcheck.xyz:8000/r&b" type="audio/mp3">
Your browser does not support the audio element.
</audio>

</body>
</html>
&#13;
&#13;
&#13;