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

    Type Alias RasselbockSpeed

    key value
    type object

    The configuration for the rasselbock speed effect. The speed effect writes the incoming signal to a delay line, and plays it back at a slower speed. When a step starts, the delay line is cleared and started fresh.

    type RasselbockSpeed = {
        isMuted: PrimitiveField<boolean, "mut">;
        isSoloed: PrimitiveField<boolean, "mut">;
        speedRatioIndex: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    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
    speedRatioIndex: PrimitiveField<number, "mut">

    The speed of the played back audio. 1/2 means half the speed compared to the incoming signal.

    • 0: invalid
    • 1: 1/16
    • 2: 1/8
    • 3: 1/6
    • 4: 1/4
    • 5: 1/3
    • 6: 1/2
    • 7: 2/3
    • 8: 3/4
    key value
    default 6
    range [1, 8]
    is api.TargetType.AutomatableParameter