AudioBufferSourceNode: loopStart 属性
loopStart
属性是 AudioBufferSourceNode
接口的一个浮点值,它以秒为单位指示在 AudioBuffer
中播放必须重新开始的位置。
loopStart
属性的默认值为 0
。
值
一个浮点值,以秒为单位,指示每次循环在音频缓冲区中开始的偏移量。此值仅在 loop
参数为 true
时使用。
示例
设置 loopStart
在此示例中,当用户按下“播放”时,我们会加载一个音频轨道,对其进行解码,并将其放入 AudioBufferSourceNode
中。
然后,该示例将 loop
属性设置为 true
,因此轨道循环播放,并播放轨道。
用户可以使用 范围控件 设置 loopStart
和 loopEnd
属性。
js
let audioCtx;
let buffer;
let source;
const play = document.getElementById("play");
const stop = document.getElementById("stop");
const loopstartControl = document.getElementById("loopstart-control");
const loopstartValue = document.getElementById("loopstart-value");
const loopendControl = document.getElementById("loopend-control");
const loopendValue = document.getElementById("loopend-value");
async function loadAudio() {
try {
// Load an audio file
const response = await fetch("rnb-lofi-melody-loop.wav");
// Decode it
buffer = await audioCtx.decodeAudioData(await response.arrayBuffer());
const max = Math.floor(buffer.duration);
loopstartControl.setAttribute("max", max);
loopendControl.setAttribute("max", max);
} catch (err) {
console.error(`Unable to fetch the audio file. Error: ${err.message}`);
}
}
play.addEventListener("click", async () => {
if (!audioCtx) {
audioCtx = new AudioContext();
await loadAudio();
}
source = audioCtx.createBufferSource();
source.buffer = buffer;
source.connect(audioCtx.destination);
source.loop = true;
source.loopStart = loopstartControl.value;
source.loopEnd = loopendControl.value;
source.start();
play.disabled = true;
stop.disabled = false;
loopstartControl.disabled = false;
loopendControl.disabled = false;
});
stop.addEventListener("click", () => {
source.stop();
play.disabled = false;
stop.disabled = true;
loopstartControl.disabled = true;
loopendControl.disabled = true;
});
loopstartControl.addEventListener("input", () => {
source.loopStart = loopstartControl.value;
loopstartValue.textContent = loopstartControl.value;
});
loopendControl.addEventListener("input", () => {
source.loopEnd = loopendControl.value;
loopendValue.textContent = loopendControl.value;
});
规范
规范 |
---|
Web 音频 API # dom-audiobuffersourcenode-loopstart |
浏览器兼容性
BCD 表格仅在浏览器中加载