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

    Type Alias RasselbockGate

    key value
    type object

    The configuration for the rasselbock gate effect. The gate effect "gates" the audio (meaning, turns it on and off) in intervals defined by the interval_duration_index parameter.

    type RasselbockGate = {
        durationFactor: PrimitiveField<number, "mut">;
        intervalDurationIndex: PrimitiveField<number, "mut">;
        isMuted: PrimitiveField<boolean, "mut">;
        isSoloed: PrimitiveField<boolean, "mut">;
    }
    Index

    Properties

    durationFactor: PrimitiveField<number, "mut">

    The percentage within the interval during which the audio is turned on.

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

    The duration of the interval during which the audio is turned on and off. 0: invalid 1: 1/64 bars 2: 1/32 bars 3: 1/16 bars 4: 1/8 bars 5: 1/4 bars 6: 1/2 bars 7: 1/1 bars

    key value
    default 5
    range [1, 8]
    is api.TargetType.AutomatableParameter
    isMuted: PrimitiveField<boolean, "mut">

    If is_muted=true, this effect is bypassed.

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

    If is_soloed=true, effects that don't have is_soloed=true are bypassed.

    key value
    default false
    is api.TargetType.AutomatableParameter