API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

C

classBiquadEffect

@codexo/exojs / audio / stable

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.

8
props
1
methods
0
events
Import
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.

Constructors 1
new(options: BiquadEffectOptions): BiquadEffect
Methods 1
destroy(): void
Properties 8
detune: number
frequency: number
gain: number
inputNode: AudioNode
outputNode: AudioNode
ready: Promise<void>
resonance: number
type: BiquadFilterType
Source