livepilot 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/LICENSE +21 -0
- package/README.md +409 -0
- package/bin/livepilot.js +390 -0
- package/installer/install.js +95 -0
- package/installer/paths.js +79 -0
- package/mcp_server/__init__.py +2 -0
- package/mcp_server/__main__.py +5 -0
- package/mcp_server/connection.py +210 -0
- package/mcp_server/memory/__init__.py +5 -0
- package/mcp_server/memory/technique_store.py +296 -0
- package/mcp_server/server.py +87 -0
- package/mcp_server/tools/__init__.py +1 -0
- package/mcp_server/tools/arrangement.py +407 -0
- package/mcp_server/tools/browser.py +86 -0
- package/mcp_server/tools/clips.py +218 -0
- package/mcp_server/tools/devices.py +256 -0
- package/mcp_server/tools/memory.py +198 -0
- package/mcp_server/tools/mixing.py +121 -0
- package/mcp_server/tools/notes.py +269 -0
- package/mcp_server/tools/scenes.py +89 -0
- package/mcp_server/tools/tracks.py +175 -0
- package/mcp_server/tools/transport.py +117 -0
- package/package.json +37 -0
- package/plugin/agents/livepilot-producer/AGENT.md +62 -0
- package/plugin/commands/beat.md +18 -0
- package/plugin/commands/memory.md +22 -0
- package/plugin/commands/mix.md +15 -0
- package/plugin/commands/session.md +13 -0
- package/plugin/commands/sounddesign.md +16 -0
- package/plugin/plugin.json +19 -0
- package/plugin/skills/livepilot-core/SKILL.md +208 -0
- package/plugin/skills/livepilot-core/references/ableton-workflow-patterns.md +831 -0
- package/plugin/skills/livepilot-core/references/device-atlas/00-index.md +110 -0
- package/plugin/skills/livepilot-core/references/device-atlas/distortion-and-character.md +687 -0
- package/plugin/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +753 -0
- package/plugin/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +525 -0
- package/plugin/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +402 -0
- package/plugin/skills/livepilot-core/references/device-atlas/midi-tools.md +963 -0
- package/plugin/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +874 -0
- package/plugin/skills/livepilot-core/references/device-atlas/space-and-depth.md +571 -0
- package/plugin/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +714 -0
- package/plugin/skills/livepilot-core/references/device-atlas/synths-native.md +953 -0
- package/plugin/skills/livepilot-core/references/m4l-devices.md +352 -0
- package/plugin/skills/livepilot-core/references/memory-guide.md +107 -0
- package/plugin/skills/livepilot-core/references/midi-recipes.md +402 -0
- package/plugin/skills/livepilot-core/references/mixing-patterns.md +578 -0
- package/plugin/skills/livepilot-core/references/overview.md +209 -0
- package/plugin/skills/livepilot-core/references/sound-design.md +392 -0
- package/remote_script/LivePilot/__init__.py +42 -0
- package/remote_script/LivePilot/arrangement.py +693 -0
- package/remote_script/LivePilot/browser.py +424 -0
- package/remote_script/LivePilot/clips.py +211 -0
- package/remote_script/LivePilot/devices.py +596 -0
- package/remote_script/LivePilot/diagnostics.py +198 -0
- package/remote_script/LivePilot/mixing.py +194 -0
- package/remote_script/LivePilot/notes.py +339 -0
- package/remote_script/LivePilot/router.py +74 -0
- package/remote_script/LivePilot/scenes.py +99 -0
- package/remote_script/LivePilot/server.py +293 -0
- package/remote_script/LivePilot/tracks.py +268 -0
- package/remote_script/LivePilot/transport.py +151 -0
- package/remote_script/LivePilot/utils.py +123 -0
- package/requirements.txt +2 -0
|
@@ -0,0 +1,571 @@
|
|
|
1
|
+
# Space & Depth — Device Atlas
|
|
2
|
+
|
|
3
|
+
> Reverbs, delays, resonators, spatial processors, and spectral effects in Ableton Live 12.
|
|
4
|
+
> Use this reference to choose, configure, and chain space/depth devices via LivePilot.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Native Devices
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
### Reverb
|
|
13
|
+
|
|
14
|
+
- **Type:** Native
|
|
15
|
+
- **Load via:** `find_and_load_device("Reverb")`
|
|
16
|
+
- **What it does:** Algorithmic reverb with separate early-reflections and diffusion-network stages. Warm, slightly dark character; good general-purpose verb that sits well in a mix without eating headroom. Not the most realistic room sim, but flexible and low-CPU.
|
|
17
|
+
- **Signal flow:** Input → Lo/Hi Cut filters → Early Reflections (with Spin modulation) → Diffusion Network (with Chorus modulation) → Reflect/Diffuse level mix → Dry/Wet output
|
|
18
|
+
- **Key parameters:**
|
|
19
|
+
- **Pre Delay** (0.5 -- 250 ms) → separation between dry transient and first reflection → 10--25 ms for natural rooms, 50--80 ms for vocals, 0 for pads
|
|
20
|
+
- **Size** → perceived room volume → small (< 30) for tight spaces, 50--80 for rooms, > 100 for halls
|
|
21
|
+
- **Decay Time** (200 ms -- 60 s) → tail length → 1--2 s for mix glue, 3--6 s for ambient, > 10 s for drones
|
|
22
|
+
- **Lo Cut / Hi Cut** → input filtering before reverb → Hi Cut 4--6 kHz tames sibilance; Lo Cut 200--400 Hz keeps mud out
|
|
23
|
+
- **Reflect** → early reflections level → 30--60% for presence, lower for smoother wash
|
|
24
|
+
- **Diffuse** → diffusion network level → 60--100% for lush tail
|
|
25
|
+
- **Shape** → blend between early reflections and tail → low = gap between ER and tail (more defined), high = smooth continuous verb
|
|
26
|
+
- **Spin** (X-Y: Amount + Rate) → modulates early reflections for movement → subtle amounts (< 30%) prevent metallic artifacts
|
|
27
|
+
- **Chorus** (X-Y: Amount + Rate) → modulates diffusion network → adds shimmer and width; keep < 40% for natural sound
|
|
28
|
+
- **Density / Scale** → reflection density in diffusion → higher = denser cloud, more noticeable at small Size
|
|
29
|
+
- **Freeze** → infinite sustain → toggle Cut to stop new input; Flat to bypass shelf filters during freeze
|
|
30
|
+
- **Hi Shelf / Lo Shelf** (in Diffusion) → frequency-dependent decay → cut highs for darker tail, cut lows for thinner tail
|
|
31
|
+
- **Stereo** (0 -- 120%) → output stereo width → 0% = mono, 60--80% for focused placement, 120% for wide wash
|
|
32
|
+
- **Quality** → Eco / Mid / High → Eco has lo-fi charm, High for final mix
|
|
33
|
+
- **Dry/Wet** → 15--25% on inserts, 100% on sends
|
|
34
|
+
- **Presets:** "Large Hall" (ambient starting point), "Drum Room" (tight), "Vocal Plate" (bright mid-range shimmer)
|
|
35
|
+
- **Reach for this when:** you need a simple, CPU-friendly reverb that blends into the mix; quick vocal or drum room; lo-fi aesthetic on Eco quality
|
|
36
|
+
- **Don't use when:** you need realistic acoustic spaces (use Hybrid Reverb with IR), you need shimmer/pitch-shifted tails, or you want spectral effects
|
|
37
|
+
- **Pairs well with:** EQ Eight (post-verb high cut), Compressor (sidechain ducking the verb), Chorus-Ensemble (pre-verb width)
|
|
38
|
+
- **vs Hybrid Reverb:** Reverb is simpler, lighter on CPU, more vintage-digital character. Hybrid Reverb wins on realism (convolution) and creative algorithms (Shimmer, Tides).
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
### Hybrid Reverb
|
|
43
|
+
|
|
44
|
+
- **Type:** Native (Live 11+, Suite only)
|
|
45
|
+
- **Load via:** `find_and_load_device("Hybrid Reverb")`
|
|
46
|
+
- **What it does:** Dual-engine reverb combining a convolution engine (real-space IRs) with an algorithmic engine (5 creative algorithms). Can run engines independently, in serial, or in parallel. The most versatile reverb in Live.
|
|
47
|
+
- **Signal flow:** Input → Send gain → Convolution Engine + Algorithmic Engine (routed Serial/Parallel/Blend) → 4-band EQ → Stereo / Vintage / Bass Mono → Dry/Wet output
|
|
48
|
+
- **Key parameters:**
|
|
49
|
+
- **Convolution Engine:**
|
|
50
|
+
- **IR Browser** → select from built-in categories or drag-drop custom audio files
|
|
51
|
+
- **Attack** → fade-in of IR → increase to remove early transient of IR
|
|
52
|
+
- **Decay** → fade-out envelope → shorter = tighter space
|
|
53
|
+
- **Size** → time-stretch the IR → < 100% compresses, > 100% stretches
|
|
54
|
+
- **Algorithmic Engine (5 algorithms):**
|
|
55
|
+
- **Dark Hall** → lush, warm, long-tail hall → the "set and forget" natural reverb
|
|
56
|
+
- **Quartz** → crystalline, bright, defined → turn Diffusion to 0 for a multitap delay effect
|
|
57
|
+
- **Shimmer** → pitch-shifted reverb tail → ethereal pads, post-rock guitars; Shift parameter sets pitch interval
|
|
58
|
+
- **Tides** → modulated reverb with swelling movement → organic, evolving textures; Mod Rate/Depth control the swell
|
|
59
|
+
- **Prism** → bright, dispersive, spectral → colorful and synthetic; good for sound design
|
|
60
|
+
- *Shared params:* Decay, Size, Delay (pre-delay for algo section), Freeze, Freeze In, Diffusion, Damping
|
|
61
|
+
- **Routing:** Serial (conv → algo) / Parallel / Blend knob between engines
|
|
62
|
+
- **EQ Section:** 4 bands — low/high toggleable between pass filters (6--96 dB/oct slopes) and shelving EQs; 2 mid peak EQs
|
|
63
|
+
- **Vintage** → emulates lower sample rates, re-pitches frozen tails for tape-loop effects
|
|
64
|
+
- **Stereo** → output width
|
|
65
|
+
- **Bass Mono** → collapses low frequencies to mono → essential for club/festival mixes
|
|
66
|
+
- **Dry/Wet** → 20--30% insert, 100% on send
|
|
67
|
+
- **Presets:** "Bright Hall" (clean starting point), "Shimmer Verb" (ethereal), "Dark Plate" (warm vocal), "Frozen Landscape" (drone/texture)
|
|
68
|
+
- **Reach for this when:** you need realistic spaces (load real room IRs), creative tails (Shimmer, Tides), or a single device that replaces multiple reverbs
|
|
69
|
+
- **Don't use when:** CPU is tight (convolution is heavier than Reverb), you only need a quick simple verb
|
|
70
|
+
- **Pairs well with:** Spectral Time (freeze into spectral delay), Auto Filter (movement on send), Utility (Bass Mono if not using built-in)
|
|
71
|
+
- **vs Reverb:** Hybrid Reverb is more versatile and realistic but heavier on CPU. Use Reverb for quick/light tasks, Hybrid Reverb for hero sounds.
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
### Delay
|
|
76
|
+
|
|
77
|
+
- **Type:** Native (updated in Live 12)
|
|
78
|
+
- **Load via:** `find_and_load_device("Delay")`
|
|
79
|
+
- **What it does:** Clean stereo delay with tempo sync, band-pass filter, LFO modulation, and three transition modes. The workhorse delay — transparent, precise, and flexible.
|
|
80
|
+
- **Signal flow:** Input → Band-pass filter → Dual delay lines (L/R, linkable) → LFO modulation (filter + time) → Ping Pong option → Dry/Wet output
|
|
81
|
+
- **Key parameters:**
|
|
82
|
+
- **Sync** (on/off) → tempo-synced divisions or free ms (1--300 ms)
|
|
83
|
+
- **Delay Time L/R** → synced: 1 = 16th, 2 = 8th, 3 = dotted 8th, 4 = quarter; free: milliseconds
|
|
84
|
+
- **Stereo Link** → locks L/R to same time
|
|
85
|
+
- **Offset** (+/- 33%) → swing/triplet feel on delay taps
|
|
86
|
+
- **Feedback** → repeat count → 0% = single echo, 50--70% = rhythmic repeats, > 90% = builds up
|
|
87
|
+
- **Filter** (X-Y: Frequency + Bandwidth) → band-pass on delay line → drag left = remove highs, right = remove lows; narrow bandwidth for telephone/radio effect
|
|
88
|
+
- **LFO Rate** (Hz) → modulation speed → slow (0.1--0.5 Hz) for gentle chorus, fast (2--8 Hz) for warble
|
|
89
|
+
- **LFO → Filter** → modulation depth on filter frequency
|
|
90
|
+
- **LFO → Time** → modulation depth on delay time → creates pitch wobble
|
|
91
|
+
- **Transition Mode:**
|
|
92
|
+
- **Repitch** → tape-like pitch shift when changing delay time → classic dub behavior
|
|
93
|
+
- **Fade** → crossfade between old/new time → smooth, no pitch artifacts
|
|
94
|
+
- **Jump** → instant switch → hard cuts, glitchy
|
|
95
|
+
- **Ping Pong** → alternates L/R → great stereo spread
|
|
96
|
+
- **Freeze** → infinite loop of current buffer
|
|
97
|
+
- **Dry/Wet** → 20--35% for subtle depth, 50% for obvious echo, 100% on send
|
|
98
|
+
- **Presets:** "Dotted Eighth" (standard guitar delay), "Ping Pong Eighth" (stereo bounce), "Slapback" (rockabilly)
|
|
99
|
+
- **Reach for this when:** you need a clean, transparent delay; rhythmic echoes; slapback; basic stereo widening
|
|
100
|
+
- **Don't use when:** you want character/color (use Echo), filtered multi-band delay (use Filter Delay), or granular textures (use Grain Delay)
|
|
101
|
+
- **Pairs well with:** EQ Eight (darken repeats on send), Auto Pan (after Ping Pong for rhythmic movement), Saturator (warm up feedback)
|
|
102
|
+
- **vs Echo:** Delay is cleaner and simpler. Echo adds noise, wobble, gate, ducking, reverb, and modulation character. Use Delay for transparent utility, Echo for vibe.
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
### Echo
|
|
107
|
+
|
|
108
|
+
- **Type:** Native (Live 10+)
|
|
109
|
+
- **Load via:** `find_and_load_device("Echo")`
|
|
110
|
+
- **What it does:** Character delay with deep modulation, noise/wobble for analog flavor, built-in reverb, gate, and ducking. Ableton's most feature-rich delay — it can go from subtle tape echo to self-oscillating chaos.
|
|
111
|
+
- **Signal flow:** Input (with optional distortion) → Dual delay lines (L/R or Mid/Side) → HP/LP filters with resonance → LFO/Envelope modulation → Character processing (Noise, Wobble, Gate, Ducking) → Reverb (Pre/Post/Feedback) → Stereo/Output → Dry/Wet
|
|
112
|
+
- **Key parameters:**
|
|
113
|
+
- **Channel Mode:** Stereo / Ping Pong / Mid/Side
|
|
114
|
+
- **Delay Time L/R** → Notes, Triplet, Dotted, 16th divisions or free ms
|
|
115
|
+
- **Offset** (+/- 33%) → swing timing
|
|
116
|
+
- **Input** → drive into delay → overdrives for saturation
|
|
117
|
+
- **D button** → determines if dry signal passes through Input gain
|
|
118
|
+
- **Feedback** → echo regeneration → > 100% with phase invert (O button) creates interesting cancellations
|
|
119
|
+
- **HP / LP Filters** → shape echo tone → with resonance for emphasis → sweet spot: HP 200--500 Hz, LP 3--6 kHz for vintage
|
|
120
|
+
- **Modulation Tab:**
|
|
121
|
+
- **LFO Waveforms:** Sine, Triangle, Saw Up, Saw Down, Square, Noise
|
|
122
|
+
- **Rate** (Hz or synced) → modulation speed
|
|
123
|
+
- **Phase** (0--360 deg) → L/R offset → 180 deg for maximum stereo movement
|
|
124
|
+
- **Mod Delay** → LFO depth on delay time → subtle chorus to wild pitch
|
|
125
|
+
- **Mod Filter** → LFO depth on filter → auto-wah on echoes
|
|
126
|
+
- **x4** → multiplies delay mod depth by 4 → deep flanging at short delay times
|
|
127
|
+
- **Env Mix** → crossfade LFO vs Envelope Follower → 100% = envelope only
|
|
128
|
+
- **Character Tab:**
|
|
129
|
+
- **Gate** → threshold + release → silences echo below threshold → rhythmic gating
|
|
130
|
+
- **Ducking** → threshold + release → reduces wet signal when input is present → clean-playing, echoey tails
|
|
131
|
+
- **Noise** → analog noise amount + Morph → lo-fi character
|
|
132
|
+
- **Wobble** → irregular delay time modulation → tape machine instability
|
|
133
|
+
- **Repitch** → pitch shifts delays when time changes during playback
|
|
134
|
+
- **Reverb** → amount + Decay → placement: Pre (before delay), Post (after delay), Feedback (inside feedback loop — builds up dramatically)
|
|
135
|
+
- **Stereo** → output width (same as Utility Width)
|
|
136
|
+
- **Dry/Wet** → 25--40% insert, 100% send
|
|
137
|
+
- **Presets:** "Analog Echo" (warm tape), "Space Echo" (dub classic), "Ducking Delay" (mix-friendly), "Infinite Rise" (feedback chaos)
|
|
138
|
+
- **Reach for this when:** you want delay with personality — dub, tape echo, lo-fi, rhythmic gated delay, self-oscillating feedback; when you need built-in reverb on the delay
|
|
139
|
+
- **Don't use when:** you need a clean transparent delay (use Delay), or independent multi-band delays (use Filter Delay)
|
|
140
|
+
- **Pairs well with:** Auto Filter (before Echo for vowel-like echoes), Utility (mid/side processing post-Echo), Beat Repeat (rhythmic source into Echo)
|
|
141
|
+
- **vs Delay:** Echo has far more character and creative potential. Delay is cleaner and simpler. Echo's Ducking alone makes it indispensable for mixing.
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
### Filter Delay
|
|
146
|
+
|
|
147
|
+
- **Type:** Native
|
|
148
|
+
- **Load via:** `find_and_load_device("Filter Delay")`
|
|
149
|
+
- **What it does:** Three independent filtered delay lines — one for Left input, one for Right input, one for L+R (stereo sum). Each line has its own band-pass filter, delay time, feedback, pan, and volume. Creates rich, frequency-separated delay textures.
|
|
150
|
+
- **Signal flow:** Input splits into 3 channels (L / L+R / R) → per-channel Band-pass Filter → per-channel Delay Line → per-channel Pan/Volume → Feedback routing (Individual or Sum) → Output mix
|
|
151
|
+
- **Key parameters:**
|
|
152
|
+
- **3 Channel Toggles** → enable/disable each delay line independently
|
|
153
|
+
- **Per-channel Filter** (Frequency + Width) → band-pass isolates frequency range for that delay → narrow band = telephone, wide = subtle shaping
|
|
154
|
+
- **Global Frequency** → ties all 3 filters together for unified sweeps
|
|
155
|
+
- **Per-channel Delay Time** → grid base (16th, dotted 16th, 16th triplet, 32nd) x multiplier (1--32)
|
|
156
|
+
- **Global Delay Time** → offsets all 3 delay times together
|
|
157
|
+
- **Per-channel Pan** → output panning → values > 50 or < -50 fold with inverted phase; 99/-99 = center with 180-degree phase inversion
|
|
158
|
+
- **Per-channel Volume** → individual delay level
|
|
159
|
+
- **Feedback** (single shared control) → regeneration for all lines
|
|
160
|
+
- **Feedback Routing:** Individual (each line feeds itself) or Sum (all outputs feed all inputs — complex, dense patterns)
|
|
161
|
+
- **Channel Swap** → per-line L/R output swap (affects feedback too)
|
|
162
|
+
- **Dry/Wet** → 20--40% insert, 100% send
|
|
163
|
+
- **Presets:** "Filtered Echoes" (separated frequency delays), "Stereo Spread" (wide panoramic)
|
|
164
|
+
- **Reach for this when:** you want different delay times for different frequency ranges (e.g., fast highs, slow lows); stereo-separated delay textures; dub-style filtered echoes; pseudo room simulation (1--25 ms, low feedback)
|
|
165
|
+
- **Don't use when:** you want a single clean delay (use Delay), or need modulation/character (use Echo)
|
|
166
|
+
- **Pairs well with:** Auto Filter (movement on the filters), Reverb (post for space), Utility (mono check the phase tricks)
|
|
167
|
+
- **vs Delay:** Filter Delay is more complex with 3 independent lines and frequency separation. Delay is simpler but has LFO modulation and transition modes that Filter Delay lacks.
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
### Grain Delay
|
|
172
|
+
|
|
173
|
+
- **Type:** Native
|
|
174
|
+
- **Load via:** `find_and_load_device("Grain Delay")`
|
|
175
|
+
- **What it does:** Granular delay that chops incoming audio into tiny grains, applies pitch shifting and randomization, then delays the grains. Creates textures ranging from subtle shimmer to total sonic destruction.
|
|
176
|
+
- **Signal flow:** Input → Grain slicing (at Frequency rate) → Pitch shift per grain → Spray (time randomization) + Random Pitch → Delay line with Feedback → Dry/Wet output
|
|
177
|
+
- **Key parameters:**
|
|
178
|
+
- **Delay Time** → synced (note values) or free (ms) → 1 ms for pure pitch-shifting without audible delay; 25--30 ms for musical delay
|
|
179
|
+
- **Frequency** (Hz) → grain rate / grains per second → higher = smaller grains, more artifacts; lower = larger grains, more stable → sweet spot: 20--60 Hz for stable pitch shifting, > 100 Hz for glitchy textures
|
|
180
|
+
- **Pitch** (semitones, supports decimals) → transpose grains → +12 or -12 for octave shimmer; +7 for fifth; small values (0.1--0.5) for subtle detuning/chorus
|
|
181
|
+
- **Spray** (ms) → random delay time variation per grain → 0 = clean, 1--5 ms = subtle smear, > 50 ms = rhythmic chaos → adds noisiness at low values, breaks structure at high values
|
|
182
|
+
- **Random Pitch** → random pitch offset per grain → 0 = clean, 10--30 = mutant chorus, > 60 = unintelligible pitch
|
|
183
|
+
- **Feedback** → 0% = single pass, 30% for playable shimmer, 60% for phaser/flanger-like buildup, > 90% for cascading pitch spirals
|
|
184
|
+
- **Dry/Wet** → 30--50% for texture layering, 100% for full effect on send
|
|
185
|
+
- **Presets:** "Shimmer" (octave up, low spray), "Granular Wash" (heavy spray + random), "Pitch Cascade" (feedback + pitch shift)
|
|
186
|
+
- **Reach for this when:** you want shimmer/octave effects, granular textures, pitch-shifted delays, subtle detuning/chorus, or total sound destruction
|
|
187
|
+
- **Don't use when:** you need clean transparent delay (use Delay), precise rhythmic repeats, or convolution-quality spaces
|
|
188
|
+
- **Pairs well with:** Reverb (post for ethereal wash), Auto Filter (pre for frequency-focused granulation), Compressor (tame wild dynamics), Corpus (resonant body on grains)
|
|
189
|
+
- **vs Spectral Resonator:** Grain Delay works in time domain (actual grain slicing); Spectral Resonator works in frequency domain (FFT partials). Grain Delay is more destructive and textural; Spectral Resonator is more melodic and harmonic.
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
### Beat Repeat
|
|
194
|
+
|
|
195
|
+
- **Type:** Native
|
|
196
|
+
- **Load via:** `find_and_load_device("Beat Repeat")`
|
|
197
|
+
- **What it does:** Rhythmic buffer repeat/stutter effect synchronized to song tempo. Captures audio slices and repeats them with optional pitch decay and filtering. Not a traditional delay — it is a performance/glitch tool.
|
|
198
|
+
- **Signal flow:** Input → Buffer capture (at Interval + Offset) → Grid slicing → Repetition (for Gate length) → Pitch processing → Filter → Mix mode output
|
|
199
|
+
- **Key parameters:**
|
|
200
|
+
- **Interval** (1/32 to 4 Bars) → how often new material is captured → 1 Bar for periodic glitches, 1/4 for frequent stutters
|
|
201
|
+
- **Offset** (16th note steps) → shifts capture point within Interval → e.g., Interval 1 Bar + Offset 8/16 = capture on beat 3
|
|
202
|
+
- **Gate** (16th note steps) → total length of repetitions → 2/16 for short burst, 8/16 for full bar stutter
|
|
203
|
+
- **Grid** (note values) → size of each repeated slice → 1/8 for rhythmic loops, 1/16 for faster stutter, 1/32 for buzz/roll
|
|
204
|
+
- **Variation** → random grid size fluctuation → 0 = fixed, higher = unpredictable grid sizes
|
|
205
|
+
- **Variation Mode:** Trigger (new random per interval), 1/4, 1/8, 1/16, Auto
|
|
206
|
+
- **Chance** (0--100%) → probability of repetitions occurring → 50% for intermittent glitches, 100% for guaranteed
|
|
207
|
+
- **Repeat** (button) → bypasses all timing, immediately captures and repeats until released → performance tool
|
|
208
|
+
- **Pitch** → resampling-based pitch reduction per repeat → negative values = each repeat drops pitch
|
|
209
|
+
- **Pitch Decay** → progressive pitch lowering across repetitions → DJ brake/tape-stop effect
|
|
210
|
+
- **Filter** (center frequency + width) → HP/LP on repeated material
|
|
211
|
+
- **Volume / Decay** → amplitude envelope on repetitions
|
|
212
|
+
- **Mix Mode:** Mix (original + repeats), Insert (mutes original during repeats), Gate (only repeats, no original)
|
|
213
|
+
- **Dry/Wet** → when using Mix mode
|
|
214
|
+
- **Presets:** "Basic Stutter" (1/16 grid), "Tape Brake" (pitch decay), "Random Glitch" (high variation + chance)
|
|
215
|
+
- **Reach for this when:** you need stutter/glitch effects, DJ-style brake downs, rhythmic repetition, live performance tools, build-ups and transitions
|
|
216
|
+
- **Don't use when:** you need smooth delay/reverb, sustained tails, or subtle spatial effects
|
|
217
|
+
- **Pairs well with:** Echo (feed stutters into delay), Auto Filter (sweep filter on repeats), Redux (bit-crushing the repeats), Gate (sidechain for rhythmic ducking)
|
|
218
|
+
- **vs Gated Delay:** Beat Repeat captures and replays audio buffer. Gated Delay sends existing signal to a delay line rhythmically. Beat Repeat is more destructive; Gated Delay is more musical.
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
### Corpus
|
|
223
|
+
|
|
224
|
+
- **Type:** Native
|
|
225
|
+
- **Load via:** `find_and_load_device("Corpus")`
|
|
226
|
+
- **What it does:** Physical modeling resonator that simulates vibrating objects (beams, strings, membranes, plates, pipes, tubes). Excites the audio input through a modeled resonant body. Adds pitched, metallic, or woody resonance to any sound.
|
|
227
|
+
- **Signal flow:** Input → Band-pass Filter → Resonance Type modeling → LFO modulation on frequency → Bleed mix → Gain/Limiter → Dry/Wet output. Optional MIDI sidechain controls pitch.
|
|
228
|
+
- **Key parameters:**
|
|
229
|
+
- **Resonance Type:** Beam, Marimba, String, Membrane, Plate, Pipe, Tube → each has distinct overtone structure
|
|
230
|
+
- **Quality:** Eco / Mid / High → overtone richness vs CPU
|
|
231
|
+
- **Tune** (Hz) → resonant frequency → sets the "note" of the resonant body
|
|
232
|
+
- **Fine** (cents) → fine tuning for MIDI mode
|
|
233
|
+
- **Spread** → detunes L/R resonators → positive = L up / R down; creates stereo width
|
|
234
|
+
- **Decay** → resonance sustain time → short for percussive ping, long for sustained tone
|
|
235
|
+
- **Material / Radius** → tonal character → affects overtone brightness and distribution
|
|
236
|
+
- **Bright** → high-frequency content of resonance
|
|
237
|
+
- **Inharmonics (Inharm)** → detune overtones from harmonic series → 0 = pure, higher = bell-like/metallic
|
|
238
|
+
- **Hit** → excitation point on the body → changes overtone emphasis
|
|
239
|
+
- **Ratio** (Membrane/Plate only) → aspect ratio of the surface
|
|
240
|
+
- **Opening** (Pipe only) → how open the far end is → affects tube resonance character
|
|
241
|
+
- **Width** → stereo spread of output
|
|
242
|
+
- **Pos. L / Pos. R** → listening position on the resonant body
|
|
243
|
+
- **LFO:** Amount, Rate (Hz or synced), Waveform, Phase/Spin, Offset → modulates resonant frequency
|
|
244
|
+
- **Filter:** Band-pass toggle, Frequency, Bandwidth → shapes input before resonator
|
|
245
|
+
- **Bleed** → amount of dry signal bypassing the resonator
|
|
246
|
+
- **MIDI Sidechain:** Frequency on/off, Note priority (Last/Low), Transpose, PB Range, Off Decay → external MIDI controls resonator pitch
|
|
247
|
+
- **Dry/Wet** → 30--60% for subtle body, 100% for full resonator effect
|
|
248
|
+
- **Presets:** "Metallic Body" (Plate, bright), "Wooden Marimba" (Marimba type), "Droning Pipe" (Pipe, long decay)
|
|
249
|
+
- **Reach for this when:** you want to add pitched resonance to drums/percussion, create tuned metallic textures, make any sound "ring" at a pitch, or build physical modeling instruments (exciter + Corpus)
|
|
250
|
+
- **Don't use when:** you need reverb (Corpus is not a space simulator), you want unpitched effects, or you need subtle spatial placement
|
|
251
|
+
- **Pairs well with:** Impulse/Simpler (exciter → Corpus for instrument building), Resonators (layer for richer harmonics), EQ Eight (tame resonant peaks), Compressor (control dynamics of resonant output)
|
|
252
|
+
- **vs Resonators:** Corpus models a single physical object with complex overtones. Resonators provides 5 parallel tuned resonances at musical intervals. Corpus = one rich body; Resonators = chord-like harmonic stacking.
|
|
253
|
+
|
|
254
|
+
---
|
|
255
|
+
|
|
256
|
+
### Resonators
|
|
257
|
+
|
|
258
|
+
- **Type:** Native
|
|
259
|
+
- **Load via:** `find_and_load_device("Resonators")`
|
|
260
|
+
- **What it does:** Five parallel resonators tuned to musical intervals. Turns any input (noise, drums, speech) into pitched, chord-like resonance. The full stereo signal feeds Resonator I; II--V alternate between L and R channels.
|
|
261
|
+
- **Signal flow:** Input → Multimode Filter → 5 parallel resonators (I = stereo, II--V = alternating L/R) → Width control → Dry/Wet output
|
|
262
|
+
- **Key parameters:**
|
|
263
|
+
- **Filter** (input) → multimode (LP/BP/HP/Notch) → shapes what frequencies excite the resonators
|
|
264
|
+
- **Resonator I Note** → root pitch (sets base for all resonators, active even when I is off)
|
|
265
|
+
- **Resonators II--V** → semitones + cents relative to root → e.g., +4, +7, +12, -12 = major chord with octave doubling
|
|
266
|
+
- **On/Off toggles** → per resonator → saves CPU
|
|
267
|
+
- **Mode** → A or B → Mode B radically changes character and drops pitch by one octave
|
|
268
|
+
- **Decay** → resonance tail length → 0.00 to hear just the filter; increase for sustain → short for percussive, long for pads
|
|
269
|
+
- **Const** → keeps delay time constant regardless of pitch → affects timbre consistency across pitch changes
|
|
270
|
+
- **Colour** → high-frequency roll-off → higher = brighter/twangier, lower = muted/warm
|
|
271
|
+
- **Width** → stereo output width → 0% = mono (but II--V still process L/R separately)
|
|
272
|
+
- **Dry/Wet** → 50--80% for harmonic overlay, 100% for full transformation
|
|
273
|
+
- **Presets:** "Chord Resonance" (major chord intervals), "Metallic Ring" (dissonant intervals), "Octave Stack"
|
|
274
|
+
- **Reach for this when:** you want to harmonize any sound into a chord, add pitched resonance to drums, create drone/pad textures from noise, or build physical modeling instruments
|
|
275
|
+
- **Don't use when:** you need spatial reverb, clean delay, or non-pitched effects
|
|
276
|
+
- **Pairs well with:** Impulse (drums → Resonators for tuned percussion), Simple Delay (post-Resonators for arpeggiator-like effects), Corpus (layer for complex resonance), EQ Eight (notch out harsh resonant peaks)
|
|
277
|
+
- **vs Corpus:** Resonators gives you 5 discrete pitched resonances at musical intervals (chords). Corpus gives you one complex physical body. Use Resonators for harmony, Corpus for timbre.
|
|
278
|
+
|
|
279
|
+
---
|
|
280
|
+
|
|
281
|
+
### Spectral Resonator
|
|
282
|
+
|
|
283
|
+
- **Type:** Native (Live 11+, Suite only)
|
|
284
|
+
- **Load via:** `find_and_load_device("Spectral Resonator")`
|
|
285
|
+
- **What it does:** FFT-based spectral processor that decomposes audio into partials, then resonates, stretches, shifts, and blurs them. Can be controlled by internal frequency or external MIDI for melodic spectral effects. Creates metallic delays, boxy reverbs, pitched spectral textures, and alien harmonics.
|
|
286
|
+
- **Signal flow:** Input → FFT analysis → Spectral processing (frequency shift, stretch, blur) → Unison voicing → IFFT resynthesis → Dry/Wet output. Optional MIDI sidechain for pitch control.
|
|
287
|
+
- **Key parameters:**
|
|
288
|
+
- **Mode:** Internal (Freq knob sets pitch) or MIDI (external MIDI track controls pitch)
|
|
289
|
+
- **Freq** → fundamental frequency for resonance → lower = dirtier, higher = brighter/more defined
|
|
290
|
+
- **Decay** → spectral resonance sustain → 200--800 ms for delay-like, > 2 s for reverb-like wash
|
|
291
|
+
- **Stretch** → shifts partials' spacing → 1.0 = natural harmonic series, < 1 = compressed (bell-like), > 1 = expanded (metallic)
|
|
292
|
+
- **Shift** → shifts all partials up or down → detuning and inharmonic effects
|
|
293
|
+
- **Chorus** → spectral chorus on partials → lush thickening
|
|
294
|
+
- **Wander** → random sawtooth modulation on partials → organic movement and shimmer
|
|
295
|
+
- **Granular** → granular processing of spectral data → glitchy, surprising textures
|
|
296
|
+
- **Unison** (1--8 voices) → stacks detuned copies → massive sound
|
|
297
|
+
- **Uni. Amt** (0--100%) → unison detune amount
|
|
298
|
+
- **Dry/Wet** → 25--40% for subtle spectral color, 100% for full transformation
|
|
299
|
+
- **Presets:** "Spectral Chorus" (lush thickening), "Metallic Resonance" (tight, ringing), "MIDI Harmonizer" (pitched spectral)
|
|
300
|
+
- **Reach for this when:** you want spectral harmonics, pitched resonance controlled by MIDI, metallic or bell-like textures, spectral chorus/thickening, or alien sound design
|
|
301
|
+
- **Don't use when:** you need a natural-sounding reverb, clean delay, or transparent processing
|
|
302
|
+
- **Pairs well with:** Spectral Time (chain for full spectral processing), Hybrid Reverb (post for spatial context), Corpus (layer time-domain and spectral resonance)
|
|
303
|
+
- **vs Corpus/Resonators:** Spectral Resonator works in the frequency domain (FFT on partials). Corpus/Resonators work in the time domain (physical modeling). Spectral Resonator is more alien/digital; Corpus/Resonators are more organic/physical.
|
|
304
|
+
|
|
305
|
+
---
|
|
306
|
+
|
|
307
|
+
### Spectral Time
|
|
308
|
+
|
|
309
|
+
- **Type:** Native (Live 11+, Suite only)
|
|
310
|
+
- **Load via:** `find_and_load_device("Spectral Time")`
|
|
311
|
+
- **What it does:** Spectral delay with freeze capability. Decomposes audio via FFT, then applies frequency-dependent delay, pitch shifting, and spectral freeze. Two independent sections (Freeze + Delay) that can be used separately or combined.
|
|
312
|
+
- **Signal flow:** Input → FFT analysis → Freeze section (capture/hold/retrigger) → Spectral Delay (frequency-dependent delay lines with pitch shift) → IFFT resynthesis → Dry/Wet output
|
|
313
|
+
- **Key parameters:**
|
|
314
|
+
- **Freeze Section:**
|
|
315
|
+
- **Freeze** (button) → captures and holds current spectral content
|
|
316
|
+
- **Mode:** Manual (hold button) or Retrigger (rhythmic freeze)
|
|
317
|
+
- **Sync** → freeze interval synced to tempo
|
|
318
|
+
- **Interval** → note value for retrigger → 1/8 for rhythmic freeze, longer for evolving pads
|
|
319
|
+
- **X-Fade** → crossfade between freeze captures → smooths rhythmic retrigger
|
|
320
|
+
- **Onset** → triggers freeze on transient detection
|
|
321
|
+
- **Delay Section:**
|
|
322
|
+
- **Time** → delay duration (ms or synced)
|
|
323
|
+
- **Feedback** → spectral delay regeneration
|
|
324
|
+
- **Shift** → pitch-shifts each successive delay → creates rising/falling spectral cascades
|
|
325
|
+
- **Tilt** → skews delay time by frequency → positive = high freqs delayed more; negative = low freqs delayed more
|
|
326
|
+
- **Spray** → randomizes delay times per frequency bin → smears time across spectrum
|
|
327
|
+
- **Mask** → limits effect to high or low frequencies only
|
|
328
|
+
- **Stereo** → pushes Tilt and Spray into stereo field
|
|
329
|
+
- **Dry/Wet** → 25--40% for subtle spectral delay, 100% for full effect
|
|
330
|
+
- **Zero Dry Signal Latency** (context menu) → reduces dry latency to 0 for live performance
|
|
331
|
+
- **Presets:** "Spectral Slapback" (short delay), "Frozen Pad" (freeze + long decay), "Pitch Cascade" (shift + feedback), "Spray Field" (randomized spectral delay)
|
|
332
|
+
- **Reach for this when:** you want spectral freeze effects, frequency-dependent delays (different delay times for different partials), pitch-shifted spectral cascades, or rhythmic glitch via retrigger freeze
|
|
333
|
+
- **Don't use when:** you need a standard clean delay, natural reverb, or transparent processing
|
|
334
|
+
- **Pairs well with:** Spectral Resonator (chain for full spectral toolkit), Reverb (post for spatial context), Auto Filter (pre for frequency-focused spectral work)
|
|
335
|
+
- **vs Grain Delay:** Spectral Time processes in frequency domain (per-partial delay). Grain Delay processes in time domain (grain slicing). Spectral Time is more precise and controllable per-frequency; Grain Delay is more chaotic and textural.
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
### Align Delay
|
|
340
|
+
|
|
341
|
+
- **Type:** M4L Stock (Max for Live Essentials)
|
|
342
|
+
- **Load via:** `find_and_load_device("Align Delay")`
|
|
343
|
+
- **What it does:** Utility delay for phase alignment and time correction. Not a creative effect — it is a mixing tool for correcting timing/phase issues between tracks, compensating for latency, or aligning PA systems.
|
|
344
|
+
- **Signal flow:** Input → Per-channel delay (L/R independent or linked) → Output
|
|
345
|
+
- **Key parameters:**
|
|
346
|
+
- **Delay Mode:**
|
|
347
|
+
- **Time** → milliseconds → for AV sync, subtle stereo maker (0.5--5 ms offset between L/R)
|
|
348
|
+
- **Samples** → sample-level precision → for latency compensation and phase alignment between parallel mic signals
|
|
349
|
+
- **Distance** → meters or feet (toggle m/ft) → for PA system alignment, monitor-to-main alignment
|
|
350
|
+
- **L/R Delay Sliders** → independent per channel
|
|
351
|
+
- **Stereo Link** → locks both channels → right channel greyed out
|
|
352
|
+
- **Temperature** (Distance mode) → Celsius/Fahrenheit → compensates for speed of sound in warm/cold environments
|
|
353
|
+
- **Reach for this when:** fixing phase issues between multi-mic recordings, compensating for device latency, aligning PA speakers, creating subtle stereo widening via Haas effect (1--15 ms offset)
|
|
354
|
+
- **Don't use when:** you want creative delay effects (use Delay, Echo, or Filter Delay)
|
|
355
|
+
- **Pairs well with:** Utility (phase inversion + Align Delay for phase correction), EQ Eight (check frequency response after alignment)
|
|
356
|
+
- **vs Delay:** Completely different purpose. Align Delay is a mixing utility with sample-accurate timing. Delay is a creative echo effect.
|
|
357
|
+
|
|
358
|
+
---
|
|
359
|
+
|
|
360
|
+
## M4L Devices — Dub Machines Pack
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
### Diffuse
|
|
365
|
+
|
|
366
|
+
- **Type:** M4L User (CLX_02 / Dub Machines by Surreal Machines)
|
|
367
|
+
- **Load via:** `find_and_load_device("Diffuse")`
|
|
368
|
+
- **What it does:** Lush feedback-network reverb/smear effect with a sophisticated delay network under the hood. Creates short virtual spaces, long atmospheric swells, and everything between. All audio passes through a tape-tone preamp for warmth. Sounds like a cross between a reverb and a multi-tap delay.
|
|
369
|
+
- **Signal flow:** Input → Tape-tone preamp → Feedback delay network (multiple delay lines with size/diffusion/phase control) → Damping → Modulation → Rectify/Pump processing → Output mix
|
|
370
|
+
- **Key parameters:**
|
|
371
|
+
- **Repeat** (56--1000 ms) → initial delay time → quantized to 1/32nd note steps; default = 1/16 note at current BPM; beat-sync available
|
|
372
|
+
- **Size** → calculates each delay line's time from Repeat, pitch, and time factors → low Size + high Diffuse = rough; large Size + medium Diffuse = buttery smooth
|
|
373
|
+
- **Diffuse** → primary character control → adjusts size, sign, and phase of each delay line's feedback and wet/direct mix → central to the entire sound
|
|
374
|
+
- **Regen** (global feedback) → 0--100% = dry to sustained; > 100% = screeching distortion and self-oscillation
|
|
375
|
+
- **Send** → input attenuation to wet signal → dub-style send behavior; with Regen > 100%, turning Send down creates constantly evolving tail
|
|
376
|
+
- **High / Low** (damping) → frequency-specific damping with dB sliders → higher % = more damping → controls brightness/warmth of tail
|
|
377
|
+
- **Mod** → internal LFO amplitude on delay line sizes → low = subtle detuning, high = 1980s digital smearing; Stereo/Mono switch for LFO behavior
|
|
378
|
+
- **Modes** → selectable routing modes with subtle differences in stereo balance, delay offsets, amplitude, and phase
|
|
379
|
+
- **Rectify** → digital processing for top-end sizzle
|
|
380
|
+
- **Pump** → dynamics tool that ducks delay under dry signal and pulls it back for sustained trails
|
|
381
|
+
- **Character Tab + Slider** → 4 machine styles → slider range exaggerates effects; default 25% = most hardware-accurate
|
|
382
|
+
- **Reach for this when:** you want a reverb with analog character, dub-style smearing, evolving atmospheric tails, feedback-network textures, or a reverb that sounds "alive"
|
|
383
|
+
- **Don't use when:** you need realistic room simulation (use Hybrid Reverb with IR), clean transparent reverb, or precise control over early reflections
|
|
384
|
+
- **Pairs well with:** Magnetic (same pack — chain for full dub processing), Echo (pre-Diffuse for delay-into-reverb), EQ Eight (post for final shaping)
|
|
385
|
+
- **vs Reverb:** Diffuse has more analog character, tape saturation, and a feedback-network architecture vs Reverb's cleaner algorithmic approach. Diffuse self-oscillates beautifully; Reverb stays controlled.
|
|
386
|
+
|
|
387
|
+
---
|
|
388
|
+
|
|
389
|
+
### Magnetic
|
|
390
|
+
|
|
391
|
+
- **Type:** M4L User (CLX_02 / Dub Machines by Surreal Machines)
|
|
392
|
+
- **Load via:** `find_and_load_device("Magnetic")`
|
|
393
|
+
- **What it does:** Tape delay modeled after a beloved 1970s tape echo unit. Multiple gain stages, tape hysteresis, capstan wobble, and 3 virtual tape heads. Includes a high-quality convolution reverb with spring, plate, and hall IRs. All signal passes through a custom tape-tone preamp.
|
|
394
|
+
- **Signal flow:** Input → Tape-tone preamp → 3 playback heads (selectable via Mode) → Tape modeling (hysteresis, wobble, saturation) → Convolution reverb (optional, routed Pre/Post/Parallel) → Bass/Treble tone → Mix output
|
|
395
|
+
- **Key parameters:**
|
|
396
|
+
- **Mode** (1--12) → selects head combinations: 1--4 = Echo only, 5--11 = Echo + Reverb, 12 = Reverb only → some modes produce exaggerated stereo spread
|
|
397
|
+
- **Input** (0--200%) → 0--100% = dub-style send; 100--200% = increases saturation in wet chain
|
|
398
|
+
- **Repeat** (10--1000 ms) → delay time → ms or beat-synced; snap arrows quantize to 1/64, 1/32, 1/16, 1/8 values
|
|
399
|
+
- **Intensity** (feedback) → 0--100% = dry to infinite sustain; > 100% = heavy distortion and self-oscillation
|
|
400
|
+
- **Bass / Treble** → 12 dB shelf filters on wet signal pre-mix
|
|
401
|
+
- **Echo dB / Reverb dB** → independent level controls for echo and reverb sections
|
|
402
|
+
- **Character Tab + Slider** → 4 machine styles → slider default 25% = most hardware-accurate; modifies tone, saturation, signal mixing, feedback response
|
|
403
|
+
- **Reverb Route:** Parallel (input → echo + reverb summed), Pre (reverb → echo), Post (echo → reverb)
|
|
404
|
+
- **Reverb IR categories** → spring, plate, early digital halls, character spaces
|
|
405
|
+
- **Width** → stereo imperfection control → mono to wide
|
|
406
|
+
- **Pump** → dynamics tool: ducks delay under dry signal, pulls back for sustained trails
|
|
407
|
+
- **Rectify** → digital processing for top-end sizzle
|
|
408
|
+
- **Processing Tab:** Oversampling (1x, 2x, 4x) → 2x recommended for high gain; 4x for fast modulation or HF content
|
|
409
|
+
- **Mix** → parabolic crossfade dry/wet → note: "dry" still passes through tape preamp
|
|
410
|
+
- **Reach for this when:** you want authentic tape echo character, dub delay with spring/plate reverb, warm saturated repeats, or a delay that sounds like real hardware
|
|
411
|
+
- **Don't use when:** you need clean digital delay (use Delay), precise rhythmic delays without character, or very low CPU usage
|
|
412
|
+
- **Pairs well with:** Diffuse (same pack — Magnetic for echo, Diffuse for reverb), Auto Filter (pre for dub filter sweeps), Utility (gain staging into Magnetic for saturation control)
|
|
413
|
+
- **vs Echo:** Magnetic is more authentically analog-sounding with real tape modeling and convolution reverb. Echo is more flexible and lighter on CPU. Magnetic wins for dub/tape authenticity; Echo wins for versatility.
|
|
414
|
+
|
|
415
|
+
---
|
|
416
|
+
|
|
417
|
+
## M4L Devices — Creative Extensions
|
|
418
|
+
|
|
419
|
+
---
|
|
420
|
+
|
|
421
|
+
### Gated Delay
|
|
422
|
+
|
|
423
|
+
- **Type:** M4L Stock (Creative Extensions, free with Suite)
|
|
424
|
+
- **Load via:** `find_and_load_device("Gated Delay")`
|
|
425
|
+
- **What it does:** Gate sequencer that rhythmically sends signal to a delay line on activated steps. Like a tempo-synced send to a delay that turns on/off in a pattern. Creates rhythmic, sequenced delay patterns impossible with standard delays.
|
|
426
|
+
- **Signal flow:** Input → Step sequencer gate → Delay line (rate-multiplied) → Feedback → Volume/Ducking → Mix mode output
|
|
427
|
+
- **Key parameters:**
|
|
428
|
+
- **Steps** → number of steps in the gate sequence
|
|
429
|
+
- **Rate** → speed of step traversal (tempo-synced)
|
|
430
|
+
- **Step toggles** → activate/deactivate individual steps → draw rhythmic patterns
|
|
431
|
+
- **Delay Time** → whole or fractional multiplier of current step size
|
|
432
|
+
- **Random** → fluctuates delay time multiplication factor → shifting rhythmic delay patterns
|
|
433
|
+
- **Feedback** → delay regeneration
|
|
434
|
+
- **Delay Volume** → wet signal level
|
|
435
|
+
- **Mix Mode:** Insert (mutes dry on active steps) or Gate (only delay output)
|
|
436
|
+
- **Ducking** → reduces delay level when dry signal is present
|
|
437
|
+
- **Dry/Wet** → balance control
|
|
438
|
+
- **Reach for this when:** you want rhythmic, sequenced delay patterns; tempo-synced gated echoes; complex polyrhythmic delay textures; trance-gate-style delay effects
|
|
439
|
+
- **Don't use when:** you want a standard delay, continuous reverb, or non-rhythmic spatial effects
|
|
440
|
+
- **Pairs well with:** Echo (post for character on the gated delays), Auto Filter (pre for filtered rhythmic delays), Beat Repeat (different rhythmic approach, layer both)
|
|
441
|
+
- **vs Beat Repeat:** Gated Delay sends to a delay line rhythmically. Beat Repeat captures and replays buffer slices. Gated Delay is more musical and controllable; Beat Repeat is more chaotic and destructive.
|
|
442
|
+
|
|
443
|
+
---
|
|
444
|
+
|
|
445
|
+
### Spectral Blur
|
|
446
|
+
|
|
447
|
+
- **Type:** M4L Stock (Creative Extensions, free with Suite)
|
|
448
|
+
- **Load via:** `find_and_load_device("Spectral Blur")`
|
|
449
|
+
- **What it does:** Spectral smearing effect that grabs grains from a defined frequency range and extends/blurs them into a dense cloud. Creates reverb-like textures through spectral processing rather than traditional reflections. Has a Freeze mode for infinite sustain.
|
|
450
|
+
- **Signal flow:** Input → FFT analysis → Frequency band selection (Freq1/Freq2) → Grain extension/blurring → Residual mix → Halo decay → Delay Compensation → Dry/Wet output
|
|
451
|
+
- **Key parameters:**
|
|
452
|
+
- **Freq1 / Freq2** → define the spectral band to blur → narrow band = surgical, wide = full-spectrum wash
|
|
453
|
+
- **In / Out mode** → In = blur frequencies inside the band; Out = blur frequencies outside the band (notch-type effect)
|
|
454
|
+
- **Halo** → decay length of blurred grains → short = subtle smear, long = dense reverb-like cloud
|
|
455
|
+
- **Freeze** → holds current buffer indefinitely regardless of Halo setting → infinite sustain pad
|
|
456
|
+
- **Residual** → level of initial un-smeared grains → higher = more clarity/definition mixed with blur
|
|
457
|
+
- **Wet Gain** → output level of wet signal
|
|
458
|
+
- **Delay Compensation** → corrects timing inconsistencies
|
|
459
|
+
- **Dry/Wet** → 20--40% for subtle blur, 100% for full cloud
|
|
460
|
+
- **Reach for this when:** you want spectral reverb-like textures, frequency-selective blurring, drone/pad creation from any source, freeze effects, or reverb that only affects certain frequencies
|
|
461
|
+
- **Don't use when:** you need traditional reverb with early reflections and tail, clean delay, or transparent processing
|
|
462
|
+
- **Pairs well with:** EQ Eight (pre for frequency-focused input), Hybrid Reverb (post for spatial context on the blur), Auto Filter (modulate the frequency band)
|
|
463
|
+
- **vs Spectral Time:** Spectral Blur is simpler and focused on smearing/freezing. Spectral Time has delay, freeze, pitch shifting, and frequency-dependent timing. Use Spectral Blur for quick spectral washes; Spectral Time for complex spectral manipulation.
|
|
464
|
+
|
|
465
|
+
---
|
|
466
|
+
|
|
467
|
+
## M4L Community Devices
|
|
468
|
+
|
|
469
|
+
---
|
|
470
|
+
|
|
471
|
+
### ml.Distance
|
|
472
|
+
|
|
473
|
+
- **Type:** M4L User (CLX_02 / community device by alkman, based on Robert Henke's original)
|
|
474
|
+
- **Load via:** Load from User Library (M4L device, not in browser by default)
|
|
475
|
+
- **What it does:** Emulates the psychoacoustic effects of distance — as a sound source moves farther away, you hear reduced volume AND reduced high frequencies (air absorption). More realistic than just turning down a fader. Includes panning for spatial positioning.
|
|
476
|
+
- **Signal flow:** Input → Distance processing (volume attenuation + frequency-dependent HF roll-off) → Panning → Output
|
|
477
|
+
- **Key parameters:**
|
|
478
|
+
- **Distance** → perceived distance from listener → 0 = close/present, 20 = subtle distance, 60+ = far away and muffled
|
|
479
|
+
- **Pan** → stereo position of the sound source
|
|
480
|
+
- **Smooth** → interpolation time for parameter changes → prevents clicks when automating distance/pan → higher = smoother transitions
|
|
481
|
+
- **Reach for this when:** you want realistic depth placement in a mix, cinematic distance effects, automating a sound moving toward or away from the listener, or creating front-to-back depth without reverb
|
|
482
|
+
- **Don't use when:** you need reverb/echo, creative effects, or lateral-only panning (use standard pan)
|
|
483
|
+
- **Pairs well with:** Reverb (distance + reverb for full spatial placement), Auto Pan (combine distance + lateral movement), Hybrid Reverb (longer reverb for "far away" sounds)
|
|
484
|
+
- **vs Utility (volume + EQ):** ml.Distance models psychoacoustic distance curves automatically. Manually reducing volume + cutting highs with EQ approximates this but is less accurate and harder to automate as a single "distance" control.
|
|
485
|
+
|
|
486
|
+
---
|
|
487
|
+
|
|
488
|
+
### Steroid (STEREOID by DIFF Devices)
|
|
489
|
+
|
|
490
|
+
- **Type:** M4L User (CLX_02)
|
|
491
|
+
- **Load via:** Load from User Library (M4L device)
|
|
492
|
+
- **What it does:** Multiband stereo width processor — NOT a reverb despite the name suggestion. Precisely adjusts stereo width across 4 independent frequency bands with correlation monitoring. Use it to widen or narrow specific frequency ranges.
|
|
493
|
+
- **Signal flow:** Input → 4-band frequency split → per-band stereo width processing → Bass Mono option → Correlation Meter → Mix → Output
|
|
494
|
+
- **Key parameters:**
|
|
495
|
+
- **Stereo Width per band** (4 bands) → independently widen or narrow each frequency range
|
|
496
|
+
- **Frequency band boundaries** → adjustable crossover points
|
|
497
|
+
- **Bass Mono** → collapses low frequencies to mono → essential for club/vinyl compatibility
|
|
498
|
+
- **Spectrum Display** → visual frequency analysis
|
|
499
|
+
- **Correlation Meter** → monitors phase relationship → stay above 0 to avoid mono-compatibility issues
|
|
500
|
+
- **Mix** → blend processed and original signal
|
|
501
|
+
- **Reach for this when:** you need frequency-selective stereo widening, bass mono for club tracks, checking stereo correlation, or making specific frequency ranges wider/narrower independently
|
|
502
|
+
- **Don't use when:** you need reverb, delay, or spatial depth effects
|
|
503
|
+
- **Pairs well with:** ml.Distance (width + depth for full spatial control), Utility (overall width after per-band adjustment), EQ Eight (frequency shaping + stereo width)
|
|
504
|
+
- **vs Utility (Width):** STEREOID offers per-band control over 4 frequency ranges with a correlation meter. Utility is broadband only. Use STEREOID for surgical stereo work, Utility for quick overall width.
|
|
505
|
+
|
|
506
|
+
---
|
|
507
|
+
|
|
508
|
+
### Vbap Doppler Panner
|
|
509
|
+
|
|
510
|
+
- **Type:** M4L User (CLX_02 / community device by alkman)
|
|
511
|
+
- **Load via:** Load from User Library (M4L device)
|
|
512
|
+
- **What it does:** 2D surround panner using Vector Base Amplitude Panning (VBAP) algorithm by Ville Pulkki. Includes Doppler shift simulation for realistic motion effects. Supports up to 12 output channels with custom speaker arrangements. For multichannel/immersive audio.
|
|
513
|
+
- **Signal flow:** Input → VBAP position calculation → Per-speaker amplitude → Doppler processing (highpass filter + variable delay for distance) → Multi-channel output routing
|
|
514
|
+
- **Key parameters:**
|
|
515
|
+
- **Position** (X/Y or azimuth) → 2D position of sound source among speakers
|
|
516
|
+
- **Speaker Configuration** → define speaker coordinates in degrees (-180 to 180 or 0 to 360) → predefined setups included
|
|
517
|
+
- **Doppler Window** → controls doppler shift intensity for moving sources
|
|
518
|
+
- **Distance** → perceived distance from center → applies HF roll-off and level reduction
|
|
519
|
+
- **Up to 12 channels** → per-channel output routing
|
|
520
|
+
- **RMS Meters** → per-speaker level monitoring
|
|
521
|
+
- **Setup note:** Device auto-routes output to "Sends Only" — must manually configure output routing through setup window.
|
|
522
|
+
- **Reach for this when:** multichannel/surround mixing, immersive audio installations, spatial audio performances, realistic source movement with Doppler, sound design for film/games
|
|
523
|
+
- **Don't use when:** working in standard stereo (use standard panning or Auto Pan), you only need simple L/R placement
|
|
524
|
+
- **Pairs well with:** ml.Distance (combine VBAP panning + distance simulation), Reverb on return tracks (per-speaker reverb for room simulation), Spectral Time (spectral processing on moving sources)
|
|
525
|
+
- **vs Surround Panner (Ableton):** Both do multichannel panning. Vbap Doppler Panner adds Doppler shift simulation and uses the VBAP algorithm (mathematically optimal for arbitrary speaker layouts). Surround Panner is simpler to set up for standard configurations.
|
|
526
|
+
|
|
527
|
+
---
|
|
528
|
+
|
|
529
|
+
## Quick Decision Matrix
|
|
530
|
+
|
|
531
|
+
| Scenario | First Choice | Alternative | Avoid |
|
|
532
|
+
|---|---|---|---|
|
|
533
|
+
| **Clean rhythmic delay** | Delay | Echo (Ducking on) | Grain Delay |
|
|
534
|
+
| **Tape/dub echo** | Echo or Magnetic | Delay (Repitch mode) | Filter Delay |
|
|
535
|
+
| **Multi-band filtered delay** | Filter Delay | Echo + EQ Eight | Delay |
|
|
536
|
+
| **Shimmer / octave delay** | Grain Delay | Spectral Time (Shift) | Delay |
|
|
537
|
+
| **Rhythmic gated delay** | Gated Delay | Beat Repeat | Reverb |
|
|
538
|
+
| **Stutter / glitch** | Beat Repeat | Gated Delay | Delay |
|
|
539
|
+
| **Natural room reverb** | Hybrid Reverb (IR) | Reverb | Spectral Blur |
|
|
540
|
+
| **Creative / evolving reverb** | Hybrid Reverb (Shimmer/Tides) | Diffuse | Reverb |
|
|
541
|
+
| **Lush analog reverb** | Diffuse | Hybrid Reverb (Dark Hall) | Align Delay |
|
|
542
|
+
| **Spectral freeze / pad** | Spectral Time (Freeze) | Spectral Blur (Freeze) | Reverb (Freeze) |
|
|
543
|
+
| **Spectral harmonic resonance** | Spectral Resonator | Resonators | Corpus |
|
|
544
|
+
| **Pitched resonance on drums** | Corpus (MIDI sidechain) | Resonators | Reverb |
|
|
545
|
+
| **Chord-like harmonic stacking** | Resonators | Spectral Resonator | Corpus |
|
|
546
|
+
| **Physical body resonance** | Corpus | Resonators | Spectral Resonator |
|
|
547
|
+
| **Realistic distance placement** | ml.Distance | Utility + EQ Eight | Reverb alone |
|
|
548
|
+
| **Multiband stereo width** | STEREOID | Utility (broadband) | ml.Distance |
|
|
549
|
+
| **Surround / immersive panning** | Vbap Doppler Panner | Surround Panner | Auto Pan |
|
|
550
|
+
| **Phase alignment / latency fix** | Align Delay | — | Delay |
|
|
551
|
+
| **Frequency-selective blur** | Spectral Blur | Spectral Time | Reverb |
|
|
552
|
+
| **Spectral pitch cascade** | Spectral Time (Shift + Feedback) | Grain Delay (Pitch + Feedback) | Delay |
|
|
553
|
+
| **Self-oscillating feedback** | Echo (Feedback > 100%) | Diffuse (Regen > 100%) | Delay |
|
|
554
|
+
| **Vocal delay (stays out of way)** | Echo (Ducking on) | Delay + Compressor sidechain | Filter Delay |
|
|
555
|
+
| **Build-up / transition FX** | Beat Repeat + Echo | Spectral Time (Freeze retrigger) | Align Delay |
|
|
556
|
+
|
|
557
|
+
---
|
|
558
|
+
|
|
559
|
+
## Chaining Recipes
|
|
560
|
+
|
|
561
|
+
| Chain | Use Case |
|
|
562
|
+
|---|---|
|
|
563
|
+
| **Grain Delay → Hybrid Reverb (Shimmer)** | Ethereal shimmer wash — Grain Delay adds octave pitch, Hybrid Reverb extends into infinite shimmer tail |
|
|
564
|
+
| **Echo (Ducking) → Diffuse** | Dub delay into lush analog reverb — Echo stays clean during playing, Diffuse smears the tails |
|
|
565
|
+
| **Beat Repeat → Echo (Feedback loop reverb)** | Glitch stutter into self-oscillating delay chaos — performance build-up tool |
|
|
566
|
+
| **Corpus (MIDI sidechain) → Resonators** | Tuned physical resonance + harmonic chord stacking — turns any percussive source into a melodic instrument |
|
|
567
|
+
| **Spectral Resonator → Spectral Time** | Full spectral processing chain — resonate partials then apply frequency-dependent delay and freeze |
|
|
568
|
+
| **ml.Distance → Hybrid Reverb** | Psychoacoustic depth — Distance handles HF roll-off and volume, Hybrid Reverb adds room context |
|
|
569
|
+
| **Filter Delay → Diffuse** | Frequency-separated delays into analog feedback reverb — complex, evolving dub textures |
|
|
570
|
+
| **Spectral Blur (narrow band) → Echo** | Selective frequency smear fed into characterful delay — isolate and repeat specific spectral content |
|
|
571
|
+
| **STEREOID → Vbap Doppler Panner** | Stereo width shaping before surround distribution — control per-band width before spatial placement |
|