API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classBiquadEffect
Native biquad filter effect backed by a single `BiquadFilterNode` - the most common audio-shaping need, covering `lowpass` / `highpass` / `bandpass` / `notch` / `peaking` / `lowshelf` / `highshelf` / `allpass` via one `type` parameter. Insert it on an AudioBus (`bus.addEffect`) or a Voice (`voice.addEffect`). The single node serves as both inputNode and outputNode.
import { BiquadEffect } from '@codexo/exojs'Native biquad filter effect backed by a single `BiquadFilterNode` - the most common audio-shaping need, covering `lowpass` / `highpass` / `bandpass` / `notch` / `peaking` / `lowshelf` / `highshelf` / `allpass` via one `type` parameter. Insert it on an AudioBus (`bus.addEffect`) or a Voice (`voice.addEffect`).
The single node serves as both inputNode and outputNode.
new(options: BiquadEffectOptionsConstruction options for BiquadEffect.): BiquadEffectdestroy(): voiddetune: numberfrequency: numbergain: numberinputNode: AudioNodeoutputNode: AudioNodeready: Promise<void>resonance: numbertype: BiquadFilterType