Amazon Vinyl
    Preparing search index...

    Interface LoudnessNormalizationController

    Handles loudness normalization by applying gain adjustments based on track loudness metadata.

    interface LoudnessNormalizationController {
        gain: number;
        logPrefix: string;
        clear(): void;
        dispatch<K extends "change">(
            type: K,
            event: LoudnessNormalizationControllerEventMap[K],
        ): void;
        hasAnyListeners(): boolean;
        hasListeners(type: "change"): boolean;
        on<K extends "change">(
            type: K,
            handler: EventHandler<LoudnessNormalizationControllerEventMap[K]>,
            options?: SignalOptions,
        ): Unsubscribe;
        setTrackLoudness(value: number | null): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index
    gain: number

    Loudness gain adjustment value.

    logPrefix: string

    A string prefix for all log statements made by this target.