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

    Type Alias RasselbockStop

    key value
    type object

    The configuration for the rasselbock stop effect. The stop effect emulates the effect of a stop button on a turntable.

    The stop effect writes the incoming signal to a delay line, which is then played back at the normal speed when the step starts, and gradually slows down as the step progresses. When a step starts, the delay line is cleared, the new incoming signal is written to it, and the speed is reset to the normal speed, to slow down again.

    type RasselbockStop = {
        doesSpinback: PrimitiveField<boolean, "mut">;
        durationIndex: PrimitiveField<number, "mut">;
        isMuted: PrimitiveField<boolean, "mut">;
        isSoloed: PrimitiveField<boolean, "mut">;
    }
    Index

    Properties

    doesSpinback: PrimitiveField<boolean, "mut">

    If does_spinback=true, the audio will ramp back to the normal speed after the stop, gradually such that the original speed is reached at the end of the step.

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

    How long it takes for the audio to come to a stop.

    • 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, 7]
    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