Web Audio API - 正确停止振荡器连接以释放包络的方法

时间:2017-04-25 12:40:49

标签: javascript web-audio web-audio-api envelope web-midi

我正在使用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;
    });
};

非常感谢任何帮助,谢谢!

1 个答案:

答案 0 :(得分:1)

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

您无需断开和删除振荡器。一旦停止,振荡器就可以自己从增益节点断开自身。如果丢弃对振荡器的引用,则可以对其进行垃圾回收。