API reference

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

C

classHighpassFilter

@codexo/exojs / audio / stable

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.

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

Constructors 1
new(options: HighpassFilterOptions): HighpassFilter
Methods 1
destroy(): void
Properties 5
frequency: number
inputNode: AudioNode
outputNode: AudioNode
ready: Promise<void>
resonance: number
Source