XSound - v4.1.3
    Preparing search index...

    Interface NoiseSuppressor

    This private class is for Noise Suppressor.

    interface NoiseSuppressor {
        context: AudioContext;
        depth: GainNode;
        input: GainNode;
        isActive: boolean;
        lfo: OscillatorNode;
        output: GainNode;
        paused: boolean;
        rate: AudioParam;
        get INPUT(): GainNode;
        get OUTPUT(): GainNode;
        activate(): NoiseSuppressor;
        connect(): GainNode;
        deactivate(): NoiseSuppressor;
        param(params: "state"): boolean;
        param(params: "threshold"): number;
        param(params: NoiseSuppressorParams): NoiseSuppressor;
        params(): Required<NoiseSuppressorParams>;
        start(): void;
        state(): boolean;
        stop(): void;
        toJSON(): string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    context: AudioContext
    depth: GainNode
    input: GainNode
    isActive: boolean = true
    lfo: OscillatorNode
    output: GainNode
    paused: boolean = true
    rate: AudioParam

    Accessors

    Methods

    • This method gets or sets parameters for noise suppressor.

      Parameters

      • params: "state"

        This argument is string if getter. Otherwise, setter.

      Returns boolean

      Return value is parameter for noise suppressor if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for noise suppressor.

      Parameters

      • params: "threshold"

        This argument is string if getter. Otherwise, setter.

      Returns number

      Return value is parameter for noise suppressor if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for noise suppressor.

      Parameters

      Returns NoiseSuppressor

      Return value is parameter for noise suppressor if getter. Otherwise, return value is for method chain.