Skip to content

Instantly share code, notes, and snippets.

@miselaytes-anton
Created May 26, 2018 19:42
Show Gist options
  • Save miselaytes-anton/c2507750665fb1d63ae0f8e496b2bcfa to your computer and use it in GitHub Desktop.
Save miselaytes-anton/c2507750665fb1d63ae0f8e496b2bcfa to your computer and use it in GitHub Desktop.
class LowpassCombFilter extends CompositeAudioNode {
get resonance () {
return this._gain.gain;
}
get dampening () {
return this._lowPass.frequency;
}
get delayTime () {
return this._delay.delayTime;
}
constructor (audioCtx, options) {
super(audioCtx, options);
const {delayTime, resonance: gainValue, dampening: frequency} = options;
this._lowPass = new BiquadFilterNode(audioCtx, {type: 'lowpass', frequency})
this._delay = new DelayNode(audioCtx, { delayTime });
this._gain = audioCtx.createGain();
this._gain.gain.setValueAtTime(gainValue, audioCtx.currentTime);
this._input
.connect(this._delay)
.connect(this._lowPass)
.connect(this._gain)
.connect(this._input)
.connect(this._output)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment