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

    Type Alias MixerDelayAux

    key value
    type entity
    key "mixerDelayAux"
    is api.TargetType.MixerAuxReceive

    This is a special kind of aux strip that works like a regular aux strip but doesn't have inserts. Instead, it has a hard-coded delay effect. There can be at most one of these in the document.

    The delay effect has a feedback parameter controlling the amount of the original signal that's played back after a delay.

    The duration of the delay is the multiplication of the step duration with the step count.

    type MixerDelayAux = {
        displayParameters: NexusObject<MixerStripDisplayParameters>;
        faderParameters: NexusObject<MixerStripFaderParameters>;
        feedbackFactor: PrimitiveField<number, "mut">;
        preGain: PrimitiveField<number, "mut">;
        stepCount: PrimitiveField<number, "mut">;
        stepLengthIndex: PrimitiveField<number, "mut">;
        trimFilter: NexusObject<MixerTrimFilter>;
    }
    Index

    Properties

    Display parameters of this strip.

    Fader parameters of this strip.

    feedbackFactor: PrimitiveField<number, "mut">

    Feedback of the delay effect.

    key value
    default 0.30000001192092896
    range [0, 0.800000011920929]
    is api.TargetType.AutomatableParameter
    preGain: PrimitiveField<number, "mut">

    Pre gain. This is the gain before the trim filter. Equivalent to a dB range of [-inf, 18.0].

    key value
    default 1
    range [0, 7.943282127380371]
    is api.TargetType.AutomatableParameter
    stepCount: PrimitiveField<number, "mut">

    Step count of the delay effect. Multiplied with the step length to get the total delay time.

    key value
    default 3
    range [1, 7]
    is api.TargetType.AutomatableParameter
    stepLengthIndex: PrimitiveField<number, "mut">

    Selects the length of each delay step as bar time in the delay effect.

    • 0: invalid
    • 1: 1/16 bars
    • 2: 1/8T bars
    • 3: 1/8 bars
    key value
    default 1
    range [1, 3]
    is api.TargetType.AutomatableParameter

    Trim filter applied to the input signal.