← Back to Delay & Echo

Official effect

Cassette Delay

Currently the same darkened stereo feedback core as Analog Delay rather than a cassette-worn model with warble or noise.

The current warm delay family uses the same basic stereo feedback-echo layout, but the repeat branch is darker because it is damped in the loop and then high-shelf-cut before being added back to the dry signal. `feedback` controls the recirculation, `tone` opens both the loop damping and the post-delay high shelf, and `time` sets the left and right tap lengths. There is no cassette-style warble, hiss, or dropout layer in the current code.

  • Delay & Echo
  • Library #130
  • Preview 8s

Waveform preview

Static peaks come from the compiled FAUST preview render. The live scope is drawn from the browser playback output in real time.

Timeline
0:00 / 0:08
Source
Compiled browser preview
Live oscilloscope from the browser playback output.AnalyserNode keeps the signal path unchanged while exposing the waveform.

How It Works

Technical view

The current warm delay family uses the same basic stereo feedback-echo layout, but the repeat branch is darker because it is damped in the loop and then high-shelf-cut before being added back to the dry signal. `feedback` controls the recirculation, `tone` opens both the loop damping and the post-delay high shelf, and `time` sets the left and right tap lengths. There is no cassette-style warble, hiss, or dropout layer in the current code.

  • Delay & Echo
  • waveshaping / saturation
  • delay processing
  • oscillator / LFO modulation
  • DC blocking

Signal Path

Compiled preview chain

Preview source: An internally generated picked-string phrase is widened to stereo with a 19-sample right-channel delay and slight left/right shelf-EQ offsets before it hits the delay core.

  1. 1internal picked-string demo phrase
  2. 2stereo spread with a short right-channel delay
  3. 3independent left and right feedback delays
  4. 4loop damping
  5. 5post-delay high-shelf darkening
  6. 6repeat branch added over the dry source
  7. 7DC blocker
  8. 8output gain trim
  9. 9final tanh limiter

Preview source

An internally generated picked-string phrase is widened to stereo with a 19-sample right-channel delay and slight left/right shelf-EQ offsets before it hits the delay core.

Effect core

Darkened stereo feedback echo with damped repeats and post-delay high-shelf rolloff.

Signal path

The static waveform and the live player both reflect this compiled signal chain.

  • internal picked-string demo phrase
  • stereo spread with a short right-channel delay
  • independent left and right feedback delays
  • loop damping
  • post-delay high-shelf darkening
  • repeat branch added over the dry source
  • DC blocker
  • output gain trim
  • final tanh limiter

Controls that matter

These are the currently active controls detected in the FAUST source for this effect.

  • mix: Scales the repeat branch above the always-present dry phrase.
  • output_gain_db: Applies final post-effect level trim after DC blocking and before the output limiter.
  • time: Sets the lengths of the left and right delay taps.
  • feedback: Raises the feedback coefficients inside the damped echo loops.
  • tone: Raises the damping cutoff and reduces the amount of high-shelf attenuation on the repeat branch.

Code-backed analysis

The generated description is tied to the active helper blocks and routing found in the current DSP.

  • demo
  • fx
  • outputStage
  • leftDemo
  • rightDemo
  • leftFx
  • rightFx
  • phraseMono

Controls

Audible controls in this DSP

  • mix

    Active

    Scales the repeat branch above the always-present dry phrase.

    Raises repeat level without fully removing the original attack.

  • output_gain_db

    Active

    Applies final post-effect level trim after DC blocking and before the output limiter.

    Matches loudness without changing the actual delay structure.

  • time

    Active

    Sets the lengths of the left and right delay taps.

    Moves the repeats from tighter echoes toward longer, looser spacing.

  • feedback

    Active

    Raises the feedback coefficients inside the damped echo loops.

    Adds more repeat count and sustain in the darker repeat field.

  • tone

    Active

    Raises the damping cutoff and reduces the amount of high-shelf attenuation on the repeat branch.

    Makes the repeats move from muffled and worn toward brighter and more open.

Analysis

Code-derived notes

Current implementation shares the same darker stereo feedback-echo core across Analog Delay, Cassette Delay, and Vinyl Delay. Cassette Delay is not yet differentiated by cassette-style noise or modulation.

Active blocks

  • demo
  • fx
  • outputStage
  • leftDemo
  • rightDemo
  • leftFx
  • rightFx
  • phraseMono
  • previewShiftSamples
  • leftWet
  • rightWet
  • pickedVoice
  • echoOnly
  • delayA
  • quantize
  • delayB
  • fund
  • pickEnv
  • ampEnv
  • triggerAt
  • combLP
  • flutterA
  • flutterB
  • maxDelaySamples

Inactive helpers

  • synthVoice
  • organVoice
  • bellVoice
  • softsat
  • diffuser

Warnings

No current warnings are attached to this effect.

Source

  • library/delay-echo/cassette-delay.dsp
  • Output stage: DC blocker -> output gain trim -> final tanh limiter
  • Library position: 130

More In Delay & Echo

Continue through the library

Each effect page uses the same generated description pipeline and compiled waveform preview assets.

Tape Echo

Currently a clean stereo feedback echo rather than a worn tape model with wow, flutter, or saturation.

View How It Works

Ping-Pong Delay

Currently independent left and right stereo repeats rather than a true alternating ping-pong bounce.

View How It Works

Granular Delay

Currently a stepped short-delay texture with quantized fragments rather than a true grain-cloud engine.

View How It Works