gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 23:47:07 24 4
gpt4 key购买 nike

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

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

如果我这样做,释放包络不起作用,音符会立即停止;如果我不这样做,释放包络会起作用,但音符有时可以永远播放下去。

编辑:似乎当 .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 的同时停止。

您不必断开连接并删除振荡器。一旦停止,振荡器可以自行断开与增益节点的连接。如果您删除对振荡器的引用,它可能会被垃圾回收。

关于javascript - Web Audio API - 停止连接到释放包络的振荡器的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43610937/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com