API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classHighpassFilter
High-pass filter backed by a `BiquadFilterNode` in `highpass` mode. Attenuates frequencies below the cutoff and passes everything above it. Useful for removing low-frequency rumble, thinning out bass-heavy audio, or sculpting mix headroom. The `resonance` (Q) parameter controls the sharpness of the roll-off peak at the cutoff frequency.
import { HighpassFilter } from '@codexo/exojs' High-pass filter backed by a `BiquadFilterNode` in `highpass` mode. Attenuates frequencies below the cutoff and passes everything above it. Useful for removing low-frequency rumble, thinning out bass-heavy audio, or sculpting mix headroom. The `resonance` (Q) parameter controls the sharpness of the roll-off peak at the cutoff frequency.
new(options: HighpassFilterOptions): HighpassFilter destroy(): void frequency: number inputNode: AudioNode outputNode: AudioNode ready: Promise<void> resonance: number