API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classCompressorFilter
@codexo/exojs / audio / stable
Dynamic-range compressor backed by a Web Audio `DynamicsCompressorNode`. Reduces the volume of loud signals above a threshold, evening out the perceived loudness of a mix. All parameter changes are applied with a short smoothing ramp so they are artifact-free during playback.
9
props
1
methods
0
events
Import
import { CompressorFilter } from '@codexo/exojs' Dynamic-range compressor backed by a Web Audio `DynamicsCompressorNode`. Reduces the volume of loud signals above a threshold, evening out the perceived loudness of a mix. All parameter changes are applied with a short smoothing ramp so they are artifact-free during playback.
Constructors 1
new(options: CompressorFilterOptions): CompressorFilter Methods 1
destroy(): void Properties 9
attack: number inputNode: AudioNode knee: number outputNode: AudioNode ratio: number ready: Promise<void> reduction: number release: number threshold: number Source