@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias StereoEnhancer

    key value
    type entity
    key "stereoEnhancer"
    is

    The StereoEnhancer widens or narrows the stereo width of a sound above a specified frequency.

    type StereoEnhancer = {
        audioInput: NexusObject<Empty>;
        audioOutput: NexusObject<Empty>;
        channelsAreInverted: PrimitiveField<boolean, "mut">;
        displayName: PrimitiveField<string, "mut">;
        frequencyHz: PrimitiveField<number, "mut">;
        isActive: PrimitiveField<boolean, "mut">;
        positionX: PrimitiveField<number, "mut">;
        positionY: PrimitiveField<number, "mut">;
        stereoWidth: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    audioInput: NexusObject<Empty>

    Single Input.

    key value
    is api.TargetType.AudioInput
    audioOutput: NexusObject<Empty>

    Single Output.

    key value
    is api.TargetType.AudioOutput
    channelsAreInverted: PrimitiveField<boolean, "mut">

    If this is true, the delay is applied to the right channel.

    key value
    default false
    is api.TargetType.AutomatableParameter
    displayName: PrimitiveField<string, "mut">

    The user-assigned name of this device.

    frequencyHz: PrimitiveField<number, "mut">

    Specifies the cut-off frequency above which the stereo processing will begin.

    key value
    default 11000
    range [32.70000076293945, 16744.0390625]
    is api.TargetType.AutomatableParameter
    isActive: PrimitiveField<boolean, "mut">

    Whether the device is active or not. When is_active=false, audio signal bypasses the device.

    key value
    default true
    is api.TargetType.AutomatableParameter
    positionX: PrimitiveField<number, "mut">

    X position on the desktop in the DAW.

    key value
    default 0
    range full
    positionY: PrimitiveField<number, "mut">

    Y position on the desktop in the DAW.

    key value
    default 0
    range full
    stereoWidth: PrimitiveField<number, "mut">

    The stereo width of the signal above the cutoff frequency:

    • -1 means the signal is mixed to mono
    • 0 means unchanged
    • 1 means maximum width
    key value
    default 0.25
    range [-1, 1]
    is api.TargetType.AutomatableParameter