我正在使用WebAudioAPIWebMIDIAPI创建复音合成器。我有两个振荡器的每个增益节点,然后将其连接到主增益节点。

我想知道释放后如何正确停止(并在必要时删除?)振荡器。我不确定是否有必要从数组中调用oscillator.stop()delete振荡器。

如果我这样做,则释放信封不起作用,并且该音符立即停止;如果我不这样做,则释放信封可以起作用,但该音符有时可以永久播放。

编辑:看来,当未实现.stop()功能并且同时演奏两个音符时,其中一个振荡器将始终保持打开状态。不确定是我的代码还是??

我的noteOff函数代码如下:

/**
 * Note is being released
 */
this.noteOff = function (frequency, velocity, note){

    var now = this.context.currentTime;

    // Get the release values
    var osc1ReleaseVal = now + this.osc1Release;
    var osc2ReleaseVal = now + this.osc2Release;

    // Cancel scheduled values
    this.oscGain.gain.cancelScheduledValues(now);
    this.osc2Gain.gain.cancelScheduledValues(now);

    // Set the value
    this.oscGain.gain.setValueAtTime(this.oscGain.gain.value, now);
    this.osc2Gain.gain.setValueAtTime(this.osc2Gain.gain.value, now);

    // Release the note
    this.oscGain.gain.linearRampToValueAtTime(0.0, osc1ReleaseVal);
    this.osc2Gain.gain.linearRampToValueAtTime(0.0, osc2ReleaseVal);

    // ----- IF I COMMENT THE `forEach` Loop the release works correctly but with side-effects!
    // Stop the oscillators
    this.oscillators[frequency].forEach(function (oscillator) {
        oscillator.stop(now);
        oscillator.disconnect();
        delete oscillator;
    });
};


任何帮助将不胜感激,谢谢!

最佳答案

不要使用oscillator.stop(now)。使用oscillator.stop(osc1ReleaseVal)安排振荡器在增益变为0的同时停止。

您不必断开连接并删除振荡器。一旦停止,振荡器就可以自行将其与增益节点断开连接。如果将对振荡器的引用丢弃,则可以对其进行垃圾回收。

09-07 21:05