我正在使用 WebAudio 播放一系列音符。我有一个运行良好的 playNote 功能;我向它发送音符频率以及每个音符的开始和停止时间。序列参数的生成发生在实际声音开始之前,这有点令人困惑。该函数只是为每个音符创建一个振荡器。(我尝试了其他方法,这是最干净的)。
但我想异步停止序列(例如,当发生外部事件时)。我尝试设置一个可用于门控输出的主增益节点,但它似乎需要在函数“内部”,因此以后无法控制。如果我尝试关闭函数内的增益对象,则为时已晚 - 因为开始和停止时间已经传递给函数。
这是我的功能:
function playNote(audioContext,frequency, startTime, endTime, last) {
gainNode = audioContext.createGain(); //to get smooth rise/fall
oscillator = audioContext.createOscillator();
oscillator.frequency.value=frequency;
oscillator.connect(gainNode);
gainNode.connect(analyserScale); //analyser is global
analyserScale.connect(audioContext.destination);
gainNode.gain.exponentialRampToValueAtTime(toneOn, startTime + trf);
gainNode.gain.exponentialRampToValueAtTime(toneOff, endTime+trf);
oscillator.start(startTime);
oscillator.stop(endTime);
}
任何帮助表示赞赏!