XSound - v4.1.3
    Preparing search index...

    Interface Marshall

    Effector's subclass for Preamplifier (Marshall).

    interface Marshall {
        context: AudioContext;
        depth: GainNode;
        input: GainNode;
        isActive: boolean;
        lfo: OscillatorNode;
        output: GainNode;
        paused: boolean;
        rate: AudioParam;
        get INPUT(): GainNode;
        get OUTPUT(): GainNode;
        activate(): Marshall;
        connect(): GainNode;
        deactivate(): Marshall;
        param(params: "state"): boolean;
        param(params: "level"): number;
        param(params: "samples"): number;
        param(params: "pre"): undefined | MarshallPreEqualizerParams;
        param(params: "post"): undefined | MarshallPostEqualizerParams;
        param(params: "cabinet"): CabinetParams;
        param(params: MarshallParams): Marshall;
        params(): Required<MarshallParams>;
        start(startTime?: number): void;
        state(): boolean;
        stop(stopTime?: number, releaseTime?: number): 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 preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: "state"

        This argument is string if getter. Otherwise, setter.

      Returns boolean

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: "level"

        This argument is string if getter. Otherwise, setter.

      Returns number

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: "samples"

        This argument is string if getter. Otherwise, setter.

      Returns number

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: "pre"

        This argument is string if getter. Otherwise, setter.

      Returns undefined | MarshallPreEqualizerParams

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: "post"

        This argument is string if getter. Otherwise, setter.

      Returns undefined | MarshallPostEqualizerParams

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: "cabinet"

        This argument is string if getter. Otherwise, setter.

      Returns CabinetParams

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method gets or sets parameters for preamp effector. This method is overloaded for type interface and type check.

      Parameters

      • params: MarshallParams

        This argument is string if getter. Otherwise, setter.

      Returns Marshall

      Return value is parameter for preamp effector if getter. Otherwise, return value is for method chain.

    • This method starts LFO. Namely, this method starts effector.

      Parameters

      • OptionalstartTime: number

        This argument is in order to schedule parameter.

      Returns void

    • This method stops LFO, then creates instance of OscillatorNode again.

      Parameters

      • OptionalstopTime: number

        This argument is in order to schedule parameter.

      • OptionalreleaseTime: number

        This argument is in order to schedule parameter when it is necessary to consider release time.

      Returns void