见标题。我正在尝试每 300 毫秒连续播放 4 次音频文件。但是,剪辑长于 300 毫秒,因此它会忽略新的播放请求,直到剪辑完成播放。我正在寻找某种方法来每 300 毫秒停止和重新启动剪辑。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
</head>
<body>
<audio id="note0440"><source src="0440.a4.wav" type="audio/wav"></audio>
<script type="text/javascript">
function playNote (loop) {
var n = document.getElementById("note0440")
if (loop > 4)
return
n.volume = 0.05
// n.currentTime = 0
n.pause()
n.play()
setTimeout("playNote("+(loop + 1)+")", 300)
}
</script>
<div style="margin:50px"><button onclick="playNote(1)">Play Note</button></div>
</body>
</html>
这不起作用。它不会停止和重新启动,无论是否n.currentTime = 0
使用。
如果您需要一个 WAV 文件进行测试,这是一个 WAV 文件:http: //popstrip.com/misc/0440.a4.wav