API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classLowpassFilter
Low-pass filter backed by a `BiquadFilterNode` in `lowpass` mode. Attenuates frequencies above the cutoff and passes everything below it. Useful for muffling audio (e.g., sound heard through a wall), taming harsh high-frequency content, or creating underwater/telephone effects. The `resonance` (Q) parameter controls the sharpness of the roll-off peak.
import { LowpassFilter } from '@codexo/exojs' Low-pass filter backed by a `BiquadFilterNode` in `lowpass` mode. Attenuates frequencies above the cutoff and passes everything below it. Useful for muffling audio (e.g., sound heard through a wall), taming harsh high-frequency content, or creating underwater/telephone effects. The `resonance` (Q) parameter controls the sharpness of the roll-off peak.
new(options: LowpassFilterOptions): LowpassFilter destroy(): void frequency: number inputNode: AudioNode outputNode: AudioNode ready: Promise<void> resonance: number