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,874 @@
|
|
|
1
|
+
# Movement & Modulation — Device Atlas
|
|
2
|
+
|
|
3
|
+
Deep reference for chorus, phaser, flanger, pitch shifting, tremolo, panning, LFOs, envelope followers, loopers, and advanced M4L modulators available in this Live set.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 1. Chorus-Ensemble (Native)
|
|
8
|
+
|
|
9
|
+
**Category:** Audio Effects > Modulation
|
|
10
|
+
**Introduced:** Live 11 (replaces legacy Chorus). Updated in Live 12.4 with improved delay time and structure controls.
|
|
11
|
+
**URI:** `Audio Effects/Modulation/Chorus-Ensemble`
|
|
12
|
+
|
|
13
|
+
### What It Does
|
|
14
|
+
Duplicates the incoming signal, applies time-modulated delays with subtle pitch variation to create width, thickness, and movement. Three distinct algorithms cover classic chorus, lush ensemble, and pitch vibrato.
|
|
15
|
+
|
|
16
|
+
### Modes
|
|
17
|
+
|
|
18
|
+
| Mode | Algorithm | Character |
|
|
19
|
+
|------|-----------|-----------|
|
|
20
|
+
| **Classic** | Two time-modulated delay lines | Traditional chorus — subtle doubling and width |
|
|
21
|
+
| **Ensemble** | Three delay lines with evenly split phase offsets (120 deg apart) | Thick, rich, '70s string-ensemble warmth |
|
|
22
|
+
| **Vibrato** | Single modulated delay, 100% wet | Pitch wobble — sine-to-triangle morph via Shape |
|
|
23
|
+
|
|
24
|
+
### Parameters
|
|
25
|
+
|
|
26
|
+
| Parameter | Range / Values | Notes |
|
|
27
|
+
|-----------|---------------|-------|
|
|
28
|
+
| Mode | Classic, Ensemble, Vibrato | Top selector |
|
|
29
|
+
| Rate | Hz (free) | Modulation speed of delay lines |
|
|
30
|
+
| Amount | 0-100% | Amplitude of modulation signal affecting delay times |
|
|
31
|
+
| Feedback | bipolar (invertible via phase button) | Channel output fed back to input; independent per L/R channel |
|
|
32
|
+
| Output | dB | Gain applied to processed signal |
|
|
33
|
+
| Warmth | 0-100% | Adds distortion + filtering ("more crunch") |
|
|
34
|
+
| Dry/Wet | 0-100% | Disabled in Vibrato mode (always 100% wet) |
|
|
35
|
+
| High-Pass Filter | 20 Hz - 2000 Hz | Reduces chorus effect below set frequency |
|
|
36
|
+
| Width | 0-200% (Classic/Ensemble only) | Stereo spread of wet signal; 0% = mono, 100% = balanced, 200% = sides 2x louder than center |
|
|
37
|
+
| Offset | 0-180 deg (Vibrato only) | Phase offset between L/R channels |
|
|
38
|
+
| Shape | continuous (Vibrato only) | Morphs waveform from sine to triangle |
|
|
39
|
+
|
|
40
|
+
### LivePilot Usage
|
|
41
|
+
```
|
|
42
|
+
find_and_load_device("Chorus-Ensemble")
|
|
43
|
+
set_device_parameter(track_index, device_index, "Rate", 1.2)
|
|
44
|
+
set_device_parameter(track_index, device_index, "D/W", 40)
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Tips
|
|
48
|
+
- Ensemble mode at low Rate (0.3-0.8 Hz) with moderate Amount gives classic string-machine sound.
|
|
49
|
+
- Vibrato mode with Shape toward triangle + fast Rate creates lo-fi pitch wobble.
|
|
50
|
+
- Use High-Pass Filter at 200-400 Hz to keep bass tight.
|
|
51
|
+
- Width at 200% is aggressive — useful on returns, risky on individual tracks.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## 2. Phaser-Flanger (Native)
|
|
56
|
+
|
|
57
|
+
**Category:** Audio Effects > Modulation
|
|
58
|
+
**Introduced:** Live 11 (replaces legacy Phaser and Flanger as separate devices).
|
|
59
|
+
**URI:** `Audio Effects/Modulation/Phaser-Flanger`
|
|
60
|
+
|
|
61
|
+
### What It Does
|
|
62
|
+
Combines phaser (allpass-filter notches), flanger (short modulated delay), and doubler (short fixed delay with modulation) in a single device. Features LFO, envelope follower, Earth/Space voicing, and Warmth saturation.
|
|
63
|
+
|
|
64
|
+
### Modes
|
|
65
|
+
|
|
66
|
+
| Mode | Mechanism | Character |
|
|
67
|
+
|------|-----------|-----------|
|
|
68
|
+
| **Phaser** | Cascaded allpass filters creating spectral notches | Sweeping, psychedelic, jet-like |
|
|
69
|
+
| **Flanger** | Short modulated delay mixed with dry signal | Metallic, jet-engine, comb-filter resonance |
|
|
70
|
+
| **Doubler** | Short modulatable delay (no feedback) | Subtle thickening, ADT, micro-pitch detune |
|
|
71
|
+
|
|
72
|
+
### Sub-Modes (Earth / Space)
|
|
73
|
+
|
|
74
|
+
| Sub-Mode | Effect |
|
|
75
|
+
|----------|--------|
|
|
76
|
+
| **Earth** | Evenly spaced notches — natural, classic voicing |
|
|
77
|
+
| **Space** | Unevenly spaced notches — exotic, alien, more colorful |
|
|
78
|
+
|
|
79
|
+
### Parameters
|
|
80
|
+
|
|
81
|
+
| Parameter | Range / Values | Notes |
|
|
82
|
+
|-----------|---------------|-------|
|
|
83
|
+
| Mode | Phaser, Flanger, Doubler | Top selector |
|
|
84
|
+
| Earth / Space | toggle | Changes notch spacing algorithm |
|
|
85
|
+
| Notches | 2-42 (Phaser mode) | Number of spectral notches |
|
|
86
|
+
| Center | Hz | Center frequency from which notches radiate |
|
|
87
|
+
| Spread | continuous | Spacing between notches |
|
|
88
|
+
| Blend | 0-100% | Crossfade of LFO modulation between Center and Spread |
|
|
89
|
+
| Feedback | bipolar | Amount of signal fed back; negative values invert phase |
|
|
90
|
+
| Color | continuous | Adds tonal character / distortion in feedback path |
|
|
91
|
+
| Warmth | 0-100% | Analog-style saturation and filtering |
|
|
92
|
+
| Safe Bass | on/off | High-pass filter protecting low frequencies from modulation |
|
|
93
|
+
| Width | 0-200% | Stereo spread of wet signal |
|
|
94
|
+
| Dry/Wet | 0-100% | Mix balance |
|
|
95
|
+
| **LFO Rate** | Hz or synced divisions | Modulation speed |
|
|
96
|
+
| **LFO Amount** | 0-100% | Depth of LFO modulation; 0% = frozen (manual sweep) |
|
|
97
|
+
| **LFO Shape** | sine, triangle, etc. | Waveform selector |
|
|
98
|
+
| **LFO Offset** | degrees | Phase offset between L/R |
|
|
99
|
+
| **LFO Spin** | Hz offset | Speeds up one channel relative to other |
|
|
100
|
+
| **Env Amount** | bipolar | Envelope follower depth |
|
|
101
|
+
| **Env Attack** | ms | Envelope follower attack time |
|
|
102
|
+
| **Env Release** | ms | Envelope follower release time |
|
|
103
|
+
|
|
104
|
+
### LivePilot Usage
|
|
105
|
+
```
|
|
106
|
+
find_and_load_device("Phaser-Flanger")
|
|
107
|
+
set_device_parameter(track_index, device_index, "Mode", "Flanger")
|
|
108
|
+
set_device_parameter(track_index, device_index, "Feedback", 60)
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### Tips
|
|
112
|
+
- Doubler mode at 0% LFO Amount with slight Center offset gives static ADT doubling.
|
|
113
|
+
- Flanger + Space + high Feedback = aggressive metallic resonance.
|
|
114
|
+
- Phaser with 4-8 notches is musical; 20+ notches is extreme.
|
|
115
|
+
- Freeze the LFO (Amount = 0) and automate Center for manual filter sweeps.
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## 3. Shifter (Native)
|
|
120
|
+
|
|
121
|
+
**Category:** Audio Effects > Modulation
|
|
122
|
+
**Introduced:** Live 11.1 (replaces legacy Frequency Shifter).
|
|
123
|
+
**URI:** `Audio Effects/Modulation/Shifter`
|
|
124
|
+
|
|
125
|
+
### What It Does
|
|
126
|
+
Real-time pitch/frequency shifting with built-in LFO, envelope follower, delay with feedback, stereo width controls, and MIDI sidechain for melodic pitch control.
|
|
127
|
+
|
|
128
|
+
### Pitch Modes
|
|
129
|
+
|
|
130
|
+
| Mode | Unit | Character |
|
|
131
|
+
|------|------|-----------|
|
|
132
|
+
| **Pitch** | Semitones | Musical pitch shifting (chromatic) |
|
|
133
|
+
| **Freq** | Hz | Wide-range frequency shifting (non-harmonic) |
|
|
134
|
+
| **Ring** | Hz | Ring modulation — shifts both up and down simultaneously; includes Drive |
|
|
135
|
+
|
|
136
|
+
### Parameters
|
|
137
|
+
|
|
138
|
+
| Parameter | Range / Values | Notes |
|
|
139
|
+
|-----------|---------------|-------|
|
|
140
|
+
| Mode | Pitch, Freq, Ring | Top selector |
|
|
141
|
+
| Coarse | semitones (Pitch mode) / Hz (Freq/Ring) | Main shift amount |
|
|
142
|
+
| Fine | cents | Fine tuning; replaced by Spread when Wide enabled |
|
|
143
|
+
| Wide | on/off | Enables stereo spread (L up / R down or vice versa) |
|
|
144
|
+
| Spread | cents (replaces Fine when Wide on) | Stereo pitch divergence |
|
|
145
|
+
| Window | continuous | Processing window size; longer = better for low freq, shorter = better for high freq |
|
|
146
|
+
| Tone | continuous | Low-pass filter in delay feedback path |
|
|
147
|
+
| Delay Time | ms or note values | Delay line time |
|
|
148
|
+
| Delay Feedback | 0-100% | Creates pitch-shifting delay cascades |
|
|
149
|
+
| Dry/Wet | 0-100% | Mix balance |
|
|
150
|
+
| **LFO Waveform** | 10 shapes (incl. 2 random) | Shape selector |
|
|
151
|
+
| **LFO Rate** | 0.01-50 Hz or synced divisions | Modulation speed |
|
|
152
|
+
| **LFO Amount** | +/- 24 semitones | Modulation depth |
|
|
153
|
+
| **LFO Phase** | 0-360 deg | Right channel delay; switchable to Spin mode |
|
|
154
|
+
| **LFO Spin** | Hz offset | Relative speed difference between channels |
|
|
155
|
+
| **LFO Duty Cycle** | continuous | Waveform distortion |
|
|
156
|
+
| **LFO Width** | continuous (S&H waveform only) | Smoothing of random steps |
|
|
157
|
+
| **Env Amount** | +/- 24 semitones | Envelope follower depth |
|
|
158
|
+
| **Env Attack** | ms | Envelope attack |
|
|
159
|
+
| **Env Release** | ms | Envelope release |
|
|
160
|
+
| **Sidechain** | Internal / MIDI | Source for pitch control |
|
|
161
|
+
| **Glide** | ms (MIDI mode) | Portamento between notes |
|
|
162
|
+
| **Pitchbend** | semitones (MIDI mode) | Maximum pitch bend range |
|
|
163
|
+
|
|
164
|
+
### LivePilot Usage
|
|
165
|
+
```
|
|
166
|
+
find_and_load_device("Shifter")
|
|
167
|
+
set_device_parameter(track_index, device_index, "Coarse", 7) # shift up a fifth
|
|
168
|
+
set_device_parameter(track_index, device_index, "D/W", 50)
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### Tips
|
|
172
|
+
- Ring mode + Drive creates aggressive metallic textures.
|
|
173
|
+
- MIDI sidechain turns any audio into a monophonic melodic instrument.
|
|
174
|
+
- Freq mode at small values (1-5 Hz) creates subtle beating / detuning.
|
|
175
|
+
- Delay + Feedback with pitch shift creates shimmer reverb-like cascades.
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
## 4. Auto Pan-Tremolo (Native)
|
|
180
|
+
|
|
181
|
+
**Category:** Audio Effects > Modulation
|
|
182
|
+
**Introduced:** Live 1.x as Auto Pan; renamed and expanded to Auto Pan-Tremolo in Live 12.3 with Tremolo-specific modes and Dynamic Frequency Modulation.
|
|
183
|
+
**URI:** `Audio Effects/Modulation/Auto Pan` (device name may appear as "Auto Pan" in browser)
|
|
184
|
+
|
|
185
|
+
### What It Does
|
|
186
|
+
LFO-driven amplitude modulation for stereo panning and tremolo effects with multiple waveform shapes, sync modes, and dynamic response.
|
|
187
|
+
|
|
188
|
+
### Modes
|
|
189
|
+
|
|
190
|
+
| Mode | What It Modulates |
|
|
191
|
+
|------|------------------|
|
|
192
|
+
| **Panning** | Stereo placement (L/R balance) via dual LFOs |
|
|
193
|
+
| **Tremolo** | Volume amplitude via single LFO |
|
|
194
|
+
|
|
195
|
+
### Tremolo Sub-Modes
|
|
196
|
+
|
|
197
|
+
| Sub-Mode | Character |
|
|
198
|
+
|----------|-----------|
|
|
199
|
+
| **Normal** | Standard amplitude modulation |
|
|
200
|
+
| **Harmonic** | Alternates modulation across high/low frequency bands (fixed crossover at 600 Hz) |
|
|
201
|
+
| **Vintage** | Non-linear curve adding warmth and grit |
|
|
202
|
+
|
|
203
|
+
### Parameters
|
|
204
|
+
|
|
205
|
+
| Parameter | Range / Values | Notes |
|
|
206
|
+
|-----------|---------------|-------|
|
|
207
|
+
| Mode | Panning, Tremolo | Top selector |
|
|
208
|
+
| Tremolo Type | Normal, Harmonic, Vintage | Tremolo mode only |
|
|
209
|
+
| Waveform | Sine, Triangle, Shark Tooth, Saw Up, Saw Down, Square, Random, Wander, S&H | LFO shape |
|
|
210
|
+
| Time Mode | Rate (Hz), Time (up to 200s), Synced, Dotted, Triplet, 16th | LFO timing |
|
|
211
|
+
| Amount | 0-100% | LFO modulation depth |
|
|
212
|
+
| Shape | bipolar continuous | Positive = rounded peaks; negative = angular/compressed peaks. Extreme values create gating/pumping |
|
|
213
|
+
| Stereo Offset | Phase (0-180 deg) or Spin | Phase offset or speed differential between L/R |
|
|
214
|
+
| Phase Offset | degrees (synced modes only) | Shifts LFO starting point relative to beat |
|
|
215
|
+
| Invert | on/off | Flips waveform polarity |
|
|
216
|
+
| Attack Time | ms or seconds | Time for LFO modulation to gradually increase; preserves transients in Tremolo mode |
|
|
217
|
+
| Dynamic Freq Mod | bipolar | Positive: louder input = faster LFO; Negative: louder input = slower LFO |
|
|
218
|
+
|
|
219
|
+
### LivePilot Usage
|
|
220
|
+
```
|
|
221
|
+
find_and_load_device("Auto Pan")
|
|
222
|
+
set_device_parameter(track_index, device_index, "Amount", 80)
|
|
223
|
+
set_device_parameter(track_index, device_index, "Shape", -60) # pumping gate
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
### Tips
|
|
227
|
+
- Tremolo + Square wave + high Amount = hard gate / sidechain-pump effect.
|
|
228
|
+
- Dynamic Freq Mod creates responsive, expressive tremolo that reacts to playing dynamics.
|
|
229
|
+
- Harmonic mode at moderate depth creates tonal movement without obvious volume pumping.
|
|
230
|
+
- S&H waveform creates random choppy panning — great for glitch.
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## 5. LFO (M4L Stock)
|
|
235
|
+
|
|
236
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
237
|
+
**Included with:** Max for Live (ships with Live Suite)
|
|
238
|
+
**URI:** `Max Audio Effect/LFO`
|
|
239
|
+
|
|
240
|
+
### What It Does
|
|
241
|
+
Free-running or tempo-synced LFO that maps to up to 8 parameters anywhere in the Live set. The foundational modulation utility.
|
|
242
|
+
|
|
243
|
+
### Parameters
|
|
244
|
+
|
|
245
|
+
| Parameter | Range / Values | Notes |
|
|
246
|
+
|-----------|---------------|-------|
|
|
247
|
+
| Map (x8) | any Live parameter | Click Map, then click target parameter |
|
|
248
|
+
| Min / Max (per map) | 0-100% of target range | Constrains modulation output range per mapping |
|
|
249
|
+
| Waveform | Sine, Saw Up, Saw Down, Triangle, Rectangle, Random, Binary Noise | 7 shapes |
|
|
250
|
+
| Rate | Hz (free) or synced beat divisions | LFO speed |
|
|
251
|
+
| Depth | 0-100% | Overall modulation intensity |
|
|
252
|
+
| Offset | degrees | Initial phase / starting point |
|
|
253
|
+
| Phase | degrees | Oscillator phase shift |
|
|
254
|
+
| Jitter | 0-100% | Adds randomness to waveform |
|
|
255
|
+
| Smooth | 0-100% | Smooths value transitions |
|
|
256
|
+
| R (Retrigger) | button | Re-triggers LFO phase on click |
|
|
257
|
+
| Hold | on/off | Freezes current output value |
|
|
258
|
+
|
|
259
|
+
### LivePilot Usage
|
|
260
|
+
```
|
|
261
|
+
search_browser("LFO") # find in Max Audio Effect
|
|
262
|
+
# Load onto track, then map parameters manually in Live's UI
|
|
263
|
+
# LFO mapping is GUI-only — cannot be set via API
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
### Tips
|
|
267
|
+
- Rectangle wave = square-wave switching between two parameter states.
|
|
268
|
+
- Binary Noise = unpredictable random — great for generative patches.
|
|
269
|
+
- Jitter + Smooth together = organic, drifting modulation.
|
|
270
|
+
- Use multiple LFO instances at different rates for polyrhythmic modulation.
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## 6. Shaper (M4L Stock)
|
|
275
|
+
|
|
276
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
277
|
+
**Included with:** Max for Live (ships with Live Suite)
|
|
278
|
+
**URI:** `Max Audio Effect/Shaper`
|
|
279
|
+
|
|
280
|
+
### What It Does
|
|
281
|
+
Custom multi-breakpoint envelope that generates modulation data. Draw arbitrary waveshapes with curves, then use them as repeating LFOs or one-shot envelopes. Maps to up to 8 parameters.
|
|
282
|
+
|
|
283
|
+
### Parameters
|
|
284
|
+
|
|
285
|
+
| Parameter | Range / Values | Notes |
|
|
286
|
+
|-----------|---------------|-------|
|
|
287
|
+
| Map (x8) | any Live parameter | Same mapping system as LFO |
|
|
288
|
+
| Min / Max (per map) | 0-100% of target range | Per-mapping output scaling |
|
|
289
|
+
| Breakpoint Display | click to add, Shift-click to delete | Custom waveshape editor |
|
|
290
|
+
| Curved Segments | Alt/Option + drag | Creates smooth curves between points |
|
|
291
|
+
| Grid | continuous | Quantize breakpoints to grid |
|
|
292
|
+
| Snap | on/off | Breakpoints lock to grid lines |
|
|
293
|
+
| Presets | 6 built-in shapes | Quick-start waveshapes |
|
|
294
|
+
| Clear | button | Resets display to flat |
|
|
295
|
+
| Rate | Hz (free) or synced beat divisions | Playback speed of shape |
|
|
296
|
+
| Depth | 0-100% | Overall modulation intensity |
|
|
297
|
+
| Offset | degrees | Initial phase point |
|
|
298
|
+
| Phase | degrees | Oscillator phase shift |
|
|
299
|
+
| Jitter | 0-100% | Randomness applied to shape |
|
|
300
|
+
| Smooth | 0-100% | Smooths output transitions |
|
|
301
|
+
| R (Retrigger) | button | Re-triggers phase (unavailable in Sync mode) |
|
|
302
|
+
|
|
303
|
+
### LivePilot Usage
|
|
304
|
+
```
|
|
305
|
+
search_browser("Shaper") # find in Max Audio Effect
|
|
306
|
+
# Shape editing is GUI-only — design the curve in Live's device view
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
### Tips
|
|
310
|
+
- Draw a sharp spike for transient-like modulation hits.
|
|
311
|
+
- Curved ramp-up shapes create swell/build effects.
|
|
312
|
+
- Combine with tempo sync for rhythmic modulation patterns.
|
|
313
|
+
- Use the oscilloscope display (upper right) to verify output shape.
|
|
314
|
+
|
|
315
|
+
---
|
|
316
|
+
|
|
317
|
+
## 7. Envelope Follower (M4L Stock)
|
|
318
|
+
|
|
319
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
320
|
+
**Included with:** Max for Live (ships with Live Suite)
|
|
321
|
+
**URI:** `Max Audio Effect/Envelope Follower`
|
|
322
|
+
|
|
323
|
+
### What It Does
|
|
324
|
+
Tracks the amplitude of incoming audio and converts it into a modulation signal. Maps to up to 8 parameters — the classic "sidechain anything" tool.
|
|
325
|
+
|
|
326
|
+
### Parameters
|
|
327
|
+
|
|
328
|
+
| Parameter | Range / Values | Notes |
|
|
329
|
+
|-----------|---------------|-------|
|
|
330
|
+
| Map (x8) | any Live parameter | Standard mapping system |
|
|
331
|
+
| Min / Max (per map) | 0-100% of target range | Per-mapping output scaling |
|
|
332
|
+
| Gain | dB | Amplifies input signal before analysis |
|
|
333
|
+
| Rise | ms | Smooths attack envelope (how fast it responds to transients) |
|
|
334
|
+
| Fall | ms | Smooths release envelope (how fast it decays) |
|
|
335
|
+
| Delay | ms or synced beat divisions | Delays the modulation output |
|
|
336
|
+
|
|
337
|
+
### LivePilot Usage
|
|
338
|
+
```
|
|
339
|
+
search_browser("Envelope Follower") # find in Max Audio Effect
|
|
340
|
+
# Place on track with audio source (e.g., kick drum track)
|
|
341
|
+
# Map to parameters on other tracks (e.g., synth filter cutoff)
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
### Tips
|
|
345
|
+
- Low Rise + moderate Fall = tight transient tracking (sidechain ducking).
|
|
346
|
+
- High Rise + high Fall = smooth, slow-responding modulation (ambient swells).
|
|
347
|
+
- Use Delay to offset the modulation timing for groove purposes.
|
|
348
|
+
- Place on a return track to derive modulation from a bus mix.
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
## 8. Looper (Native)
|
|
353
|
+
|
|
354
|
+
**Category:** Audio Effects > Looper
|
|
355
|
+
**URI:** `Audio Effects/Looper`
|
|
356
|
+
|
|
357
|
+
### What It Does
|
|
358
|
+
Real-time audio looper with overdub, speed/pitch manipulation, reverse playback, and feedback-path effects insert. Designed for live performance.
|
|
359
|
+
|
|
360
|
+
### Transport States
|
|
361
|
+
|
|
362
|
+
| State | Color | Behavior |
|
|
363
|
+
|-------|-------|----------|
|
|
364
|
+
| **Record** | Red | Captures audio into buffer; first recording sets loop length |
|
|
365
|
+
| **Overdub** | Orange | Layers new audio on top of existing loop |
|
|
366
|
+
| **Play** | Green | Plays back the loop |
|
|
367
|
+
| **Stop** | Gray | Stops playback; loop retained in buffer |
|
|
368
|
+
|
|
369
|
+
### Parameters
|
|
370
|
+
|
|
371
|
+
| Parameter | Range / Values | Notes |
|
|
372
|
+
|-----------|---------------|-------|
|
|
373
|
+
| Transport Button | Record > Overdub > Play cycle | Main multi-state button |
|
|
374
|
+
| Stop | button | Stops playback |
|
|
375
|
+
| Clear | button | Erases buffer; in Overdub mode, clears content but keeps length/tempo |
|
|
376
|
+
| Undo / Redo | button | One-step undo of last overdub layer |
|
|
377
|
+
| Speed | -3 oct to +3 oct (tape-style) | Pitch and speed locked together; half speed = octave down |
|
|
378
|
+
| Reverse | on/off | Plays loop backwards |
|
|
379
|
+
| Feedback | 0-100% | How much of the loop is retained per cycle; <100% = gradual fade |
|
|
380
|
+
| Record Length | bars (1, 2, 4, 8, etc.) or free | Pre-set loop length or record-to-stop |
|
|
381
|
+
| Song Control | None, Start, Start & Stop | How looper interacts with Live's transport |
|
|
382
|
+
| Tempo Control | None, Follow Song Tempo, Set & Follow Song Tempo | Tempo sync behavior |
|
|
383
|
+
| Monitor | on/off | Pass input audio through during playback |
|
|
384
|
+
| Drag Me | drag region | Drag completed loop to arrangement/clip slot |
|
|
385
|
+
| **FX Insert** | (device chain position) | Effects placed after Looper in chain process the feedback path |
|
|
386
|
+
|
|
387
|
+
### LivePilot Usage
|
|
388
|
+
```
|
|
389
|
+
find_and_load_device("Looper")
|
|
390
|
+
# Looper transport is best controlled via MIDI mapping or foot controller
|
|
391
|
+
# API access to Looper state is limited
|
|
392
|
+
```
|
|
393
|
+
|
|
394
|
+
### Tips
|
|
395
|
+
- Place effects (delay, reverb, filter) after Looper for iterative feedback processing — each pass adds more effect.
|
|
396
|
+
- Speed at -12 (octave down) creates ambient drones from any source.
|
|
397
|
+
- Feedback at 80-90% creates gradually evolving, decaying loops.
|
|
398
|
+
- Set Song Control to "None" for independent looper operation in live performance.
|
|
399
|
+
|
|
400
|
+
---
|
|
401
|
+
|
|
402
|
+
## 9. MFA Audio S&H (M4L — CLX_05 Mod Squad)
|
|
403
|
+
|
|
404
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
405
|
+
**Developer:** Manifest Audio (Noah Pred)
|
|
406
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
407
|
+
|
|
408
|
+
### What It Does
|
|
409
|
+
Generates random modulation values when the incoming audio signal exceeds a threshold. Audio-triggered sample-and-hold for reactive, probabilistic parameter changes.
|
|
410
|
+
|
|
411
|
+
### Parameters
|
|
412
|
+
|
|
413
|
+
| Parameter | Range / Values | Notes |
|
|
414
|
+
|-----------|---------------|-------|
|
|
415
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
416
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
417
|
+
| Sensitivity / Gain | continuous | Threshold for audio trigger detection |
|
|
418
|
+
| Length | continuous | Duration / interval of S&H trigger windows |
|
|
419
|
+
| Probability | 0-100% | Chance of triggering on each threshold crossing |
|
|
420
|
+
| Delay | ms or synced | Offset before value change |
|
|
421
|
+
| Depth | 0-100% | Overall modulation amount |
|
|
422
|
+
| Offset | continuous | DC offset of output |
|
|
423
|
+
| Smoothing | continuous | Smooths value transitions |
|
|
424
|
+
| Randomization Mode | Luck, Drunk, Fluid | Style of random value generation |
|
|
425
|
+
|
|
426
|
+
### Tips
|
|
427
|
+
- Sensitivity controls how loud the signal must be to trigger — set low for constant triggering, high for accent-only.
|
|
428
|
+
- Drunk mode creates values that wander near the previous value (Brownian motion).
|
|
429
|
+
- Fluid mode interpolates smoothly between random targets.
|
|
430
|
+
|
|
431
|
+
---
|
|
432
|
+
|
|
433
|
+
## 10. MFA Audiodubber (M4L — CLX_05 Mod Squad)
|
|
434
|
+
|
|
435
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
436
|
+
**Developer:** Manifest Audio
|
|
437
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
438
|
+
|
|
439
|
+
### What It Does
|
|
440
|
+
Creates maximum-value spikes (dub throws) when incoming audio exceeds a threshold. Probabilistic, audio-reactive parameter bursts for dub-style send throws and dramatic automation gestures.
|
|
441
|
+
|
|
442
|
+
### Parameters
|
|
443
|
+
|
|
444
|
+
| Parameter | Range / Values | Notes |
|
|
445
|
+
|-----------|---------------|-------|
|
|
446
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
447
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
448
|
+
| Sensitivity / Gain | continuous | Audio threshold for spike trigger |
|
|
449
|
+
| Probability | 0-100% | Chance of triggering per threshold crossing |
|
|
450
|
+
| Length | continuous | Duration of each spike |
|
|
451
|
+
| Delay | ms or synced | Offset before spike fires |
|
|
452
|
+
| Depth | 0-100% | Overall modulation amount |
|
|
453
|
+
| Offset | continuous | Baseline value when not spiking |
|
|
454
|
+
| Smoothing | continuous | Smooths spike onset/release |
|
|
455
|
+
|
|
456
|
+
### Tips
|
|
457
|
+
- Map to reverb/delay send levels for classic dub throws that react to audio peaks.
|
|
458
|
+
- Low Probability creates sparse, unpredictable throws; high Probability is more rhythmic.
|
|
459
|
+
- Combine with short Length for staccato bursts or long Length for sustained throws.
|
|
460
|
+
|
|
461
|
+
---
|
|
462
|
+
|
|
463
|
+
## 11. MFA Autodubber (M4L — CLX_05 Mod Squad)
|
|
464
|
+
|
|
465
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
466
|
+
**Developer:** Manifest Audio
|
|
467
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
468
|
+
|
|
469
|
+
### What It Does
|
|
470
|
+
Autonomously generates maximum-value spikes at probabilistic intervals. Unlike Audiodubber, it runs independently — no audio input needed to trigger. Self-running dub throw generator.
|
|
471
|
+
|
|
472
|
+
### Parameters
|
|
473
|
+
|
|
474
|
+
| Parameter | Range / Values | Notes |
|
|
475
|
+
|-----------|---------------|-------|
|
|
476
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
477
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
478
|
+
| Interval | synced divisions | Roughly how often spikes occur |
|
|
479
|
+
| Duration | synced divisions | How long each spike lasts |
|
|
480
|
+
| Probability | 0-100% | Chance of spike at each interval |
|
|
481
|
+
| Depth | 0-100% | Overall modulation amount |
|
|
482
|
+
| Offset | continuous | Baseline (minimum) value |
|
|
483
|
+
| Smoothing | continuous | Smooths spike transitions |
|
|
484
|
+
|
|
485
|
+
### Tips
|
|
486
|
+
- Set Interval to 1/2 or 1 bar with low Probability for occasional dramatic dub throws.
|
|
487
|
+
- Map to send levels on multiple return tracks for varied throw destinations.
|
|
488
|
+
- Stack with Audiodubber for both reactive and autonomous dub effects.
|
|
489
|
+
|
|
490
|
+
---
|
|
491
|
+
|
|
492
|
+
## 12. MFA Follower (M4L — CLX_05 Mod Squad)
|
|
493
|
+
|
|
494
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
495
|
+
**Developer:** Manifest Audio
|
|
496
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
497
|
+
|
|
498
|
+
### What It Does
|
|
499
|
+
Envelope follower with BPM-synchronized base rate and multiplier delay time. More tempo-aware than the stock Envelope Follower, with additional timing and rhythmic controls.
|
|
500
|
+
|
|
501
|
+
### Parameters
|
|
502
|
+
|
|
503
|
+
| Parameter | Range / Values | Notes |
|
|
504
|
+
|-----------|---------------|-------|
|
|
505
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
506
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
507
|
+
| Base Rate | synced divisions | Tempo-synced envelope rate |
|
|
508
|
+
| Multiplier | continuous | Rate multiplier for fine-tuning |
|
|
509
|
+
| Jitter | 0-100% | Randomness in timing |
|
|
510
|
+
| Smoothing | continuous | Output smoothing |
|
|
511
|
+
| Flip | on/off | Inverts envelope output |
|
|
512
|
+
| Step Rate | continuous | Quantizes output to stepped values |
|
|
513
|
+
| Depth | 0-100% | Overall modulation amount |
|
|
514
|
+
| Offset | continuous | DC offset of output |
|
|
515
|
+
|
|
516
|
+
### Tips
|
|
517
|
+
- Tempo-synced rate makes this ideal for rhythmically locked envelope following.
|
|
518
|
+
- Flip inverts the response — loud passages push parameters down instead of up.
|
|
519
|
+
- Step Rate creates quantized, staircase-style modulation from smooth audio input.
|
|
520
|
+
|
|
521
|
+
---
|
|
522
|
+
|
|
523
|
+
## 13. MFA Gain Tracker (M4L — CLX_05 Mod Squad)
|
|
524
|
+
|
|
525
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
526
|
+
**Developer:** Manifest Audio
|
|
527
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
528
|
+
|
|
529
|
+
### What It Does
|
|
530
|
+
Provides amplitude-based audio-rate modulation. Tracks the incoming signal's amplitude continuously and outputs it as a modulation signal. Faster and more direct than the Follower — operates at audio rate.
|
|
531
|
+
|
|
532
|
+
### Parameters
|
|
533
|
+
|
|
534
|
+
| Parameter | Range / Values | Notes |
|
|
535
|
+
|-----------|---------------|-------|
|
|
536
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
537
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
538
|
+
| Depth | 0-100% | Overall modulation amount |
|
|
539
|
+
| Offset | continuous | DC offset |
|
|
540
|
+
| Smoothing | continuous | Output smoothing |
|
|
541
|
+
|
|
542
|
+
### Tips
|
|
543
|
+
- Audio-rate tracking means this responds to individual waveform cycles, not just envelope shape.
|
|
544
|
+
- Useful for creating amplitude-coupled modulation effects (e.g., louder = more filter cutoff).
|
|
545
|
+
- Lighter on parameters than Follower — use when you want direct, unprocessed amplitude tracking.
|
|
546
|
+
|
|
547
|
+
---
|
|
548
|
+
|
|
549
|
+
## 14. MFA LFOx (M4L — CLX_05 Mod Squad)
|
|
550
|
+
|
|
551
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
552
|
+
**Developer:** Manifest Audio
|
|
553
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
554
|
+
|
|
555
|
+
### What It Does
|
|
556
|
+
Advanced BPM-synchronized LFO with probability, cycle reset triggers, and pitch-controlled rate. Goes beyond the stock LFO with tempo-locked curves, MIDI-triggered resets, and scale-quantized output.
|
|
557
|
+
|
|
558
|
+
### Parameters
|
|
559
|
+
|
|
560
|
+
| Parameter | Range / Values | Notes |
|
|
561
|
+
|-----------|---------------|-------|
|
|
562
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
563
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
564
|
+
| Base Rate | synced divisions | Tempo-synced LFO rate |
|
|
565
|
+
| Multiplier | continuous | Rate multiplier |
|
|
566
|
+
| Waveform | multiple curves | LFO shape selector |
|
|
567
|
+
| Cycle Reset | MIDI trigger, MIDI pitch, bar count | When to restart the LFO cycle |
|
|
568
|
+
| Probability | 0-100% | Chance of output changing per cycle |
|
|
569
|
+
| Pitch Control | on/off | MIDI pitch controls LFO rate (audio-rate) |
|
|
570
|
+
| Scale/Key | selectable | Constrains pitch-rate mapping to musical scale |
|
|
571
|
+
| Depth | 0-100% | Overall modulation amount |
|
|
572
|
+
| Offset | continuous | Phase offset |
|
|
573
|
+
| Smoothing | continuous | Output smoothing |
|
|
574
|
+
|
|
575
|
+
**Pro version adds:** Draw, Lines, Steps, and Audio editable modulation modes for custom shapes, breakpoint patterns, step sequences, and audio waveforms as modulation sources.
|
|
576
|
+
|
|
577
|
+
### Tips
|
|
578
|
+
- Cycle Reset via MIDI = LFO restarts on every note, creating synced envelope-like shapes.
|
|
579
|
+
- Pitch-controlled rate turns the LFO into a pitch-tracking vibrato or filter sweep.
|
|
580
|
+
- Base Rate + Multiplier gives fine-grained tempo-locked control.
|
|
581
|
+
|
|
582
|
+
---
|
|
583
|
+
|
|
584
|
+
## 15. MFA X-Control (M4L — CLX_05 Mod Squad)
|
|
585
|
+
|
|
586
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
587
|
+
**Developer:** Manifest Audio
|
|
588
|
+
**Pack:** Mod Squad (free) / Mod Squad Pro (paid)
|
|
589
|
+
|
|
590
|
+
### What It Does
|
|
591
|
+
Macro knob that can be optionally quantized to synchronized rate divisions for ladder-style stepped parameter changes. Also available as a rack configuration (X-Control 4 / X-Control 8) for controlling 32 or 64 parameters from rack macros.
|
|
592
|
+
|
|
593
|
+
### Parameters
|
|
594
|
+
|
|
595
|
+
| Parameter | Range / Values | Notes |
|
|
596
|
+
|-----------|---------------|-------|
|
|
597
|
+
| Map (x8) | any Live parameter | Standard 8-target mapping |
|
|
598
|
+
| Min / Max (per map) | constrainable range | Per-mapping output scaling |
|
|
599
|
+
| Rate | synced divisions | Quantization rate for value changes |
|
|
600
|
+
| Multiplier | continuous | Rate multiplier |
|
|
601
|
+
| Jitter | 0-100% | Randomness in stepped values |
|
|
602
|
+
| Smoothing | continuous | Transition smoothing between steps |
|
|
603
|
+
|
|
604
|
+
**X-Control 4 Rack:** 4 macro knobs, each mapped to 4 X-Control instances = 32 parameters. Remaining 4 macros control Rate, Multiplier, Jitter, Smoothing globally.
|
|
605
|
+
**X-Control 8 Rack:** 8 macro knobs, each mapped to 8 instances = 64 parameters.
|
|
606
|
+
|
|
607
|
+
### Tips
|
|
608
|
+
- Use as a master modulation controller — one knob drives many parameters with optional quantization.
|
|
609
|
+
- MIDI-map the macro for hardware control of complex, multi-parameter transitions.
|
|
610
|
+
- Jitter adds humanization to otherwise mechanical stepped changes.
|
|
611
|
+
|
|
612
|
+
---
|
|
613
|
+
|
|
614
|
+
## 16. Functions Audio / Functions MIDI (M4L — CLX_02 Movers)
|
|
615
|
+
|
|
616
|
+
**Category:** Max for Live > Max Audio Effect / Max MIDI Effect (modulator)
|
|
617
|
+
**Developer:** NOISS COKO (via Isotonik Studios)
|
|
618
|
+
**Pack:** The Movers
|
|
619
|
+
|
|
620
|
+
### What It Does
|
|
621
|
+
Versatile breakpoint function generator that works as both a classic LFO and a complex triggered envelope. Control values are drawn as custom shapes and distributed across five output layers. MIDI version triggers from incoming MIDI notes; Audio version runs freely or synced.
|
|
622
|
+
|
|
623
|
+
### Parameters
|
|
624
|
+
|
|
625
|
+
| Parameter | Range / Values | Notes |
|
|
626
|
+
|-----------|---------------|-------|
|
|
627
|
+
| Function Display | breakpoint editor | Draw custom modulation shapes with curves |
|
|
628
|
+
| Output Layers (x5) | Map button or MIDI message | Each layer independently assignable |
|
|
629
|
+
| MIDI Output Formats | CC, Pitch Bend, Mod Wheel, Foot Control, Aftertouch | Available message types per layer |
|
|
630
|
+
| Rate / Speed | Hz or synced | Playback speed of the function |
|
|
631
|
+
| Trigger Mode | free-running, MIDI note, audio threshold | What starts the function cycle |
|
|
632
|
+
| Loop | on/off | Repeat or one-shot |
|
|
633
|
+
| Randomization | continuous | Amount of random variation per cycle |
|
|
634
|
+
| Precision / Smoothing | continuous | Output resolution and smoothing |
|
|
635
|
+
|
|
636
|
+
**Audio version:** No MIDI output options; maps to Live parameters only.
|
|
637
|
+
**MIDI version:** Can output MIDI messages to downstream instruments.
|
|
638
|
+
|
|
639
|
+
### Tips
|
|
640
|
+
- Draw complex multi-stage envelopes for evolving parameter changes over time.
|
|
641
|
+
- Use as a triggered envelope (MIDI) for synth-like modulation on any parameter.
|
|
642
|
+
- Five output layers means one function shape can drive five different parameters simultaneously.
|
|
643
|
+
- Randomization adds organic variation to repeated patterns.
|
|
644
|
+
|
|
645
|
+
---
|
|
646
|
+
|
|
647
|
+
## 17. Ministeps Audio / Ministeps MIDI (M4L — CLX_02 Movers)
|
|
648
|
+
|
|
649
|
+
**Category:** Max for Live > Max Audio Effect / Max MIDI Effect (modulator)
|
|
650
|
+
**Developer:** NOISS COKO (via Isotonik Studios)
|
|
651
|
+
**Pack:** The Movers
|
|
652
|
+
|
|
653
|
+
### What It Does
|
|
654
|
+
Three independent 8-step sequencers whose values are distributed across five output layers. Creates stepped, rhythmic modulation patterns from precise to fully randomized.
|
|
655
|
+
|
|
656
|
+
### Parameters
|
|
657
|
+
|
|
658
|
+
| Parameter | Range / Values | Notes |
|
|
659
|
+
|-----------|---------------|-------|
|
|
660
|
+
| Sequencer A/B/C | 8 steps each (24 total) | Three independent step sequencers |
|
|
661
|
+
| Step Values | continuous per step | Set each step's output value |
|
|
662
|
+
| Output Layers (x5) | Map button or MIDI message | Each layer independently assignable |
|
|
663
|
+
| MIDI Output Formats | CC, Pitch Bend, Mod Wheel, Foot Control, Aftertouch | Per-layer message type |
|
|
664
|
+
| Rate | synced divisions | Step advancement speed |
|
|
665
|
+
| Randomization | continuous | From absolute precision to total randomness |
|
|
666
|
+
| Direction | forward, reverse, pendulum, random | Step playback order |
|
|
667
|
+
| Step Count | 1-8 per sequencer | Active number of steps |
|
|
668
|
+
| Slope Mode | selectable | Transition shape between steps |
|
|
669
|
+
|
|
670
|
+
**Audio version:** No MIDI output; maps to Live parameters only.
|
|
671
|
+
**MIDI version:** Can output MIDI messages.
|
|
672
|
+
|
|
673
|
+
### Tips
|
|
674
|
+
- Three sequencers at different lengths create polyrhythmic modulation.
|
|
675
|
+
- Ideal for parameters that don't support clip automation or MIDI mapping (via Map).
|
|
676
|
+
- High randomization = generative; zero randomization = precise, repeatable patterns.
|
|
677
|
+
- Pair with instruments like Wavetable, Operator, or Meld that have internal mod matrices.
|
|
678
|
+
|
|
679
|
+
---
|
|
680
|
+
|
|
681
|
+
## 18. Smooth Automator Audio / MIDI (M4L — CLX_02)
|
|
682
|
+
|
|
683
|
+
**Category:** Max for Live > Max Audio Effect / Max MIDI Effect (utility)
|
|
684
|
+
**Developer:** KB Devices (KB Live Solutions)
|
|
685
|
+
**Note:** This is a separate device from the Movers pack, but commonly grouped in CLX_02.
|
|
686
|
+
|
|
687
|
+
### What It Does
|
|
688
|
+
Creates smooth, timed transitions between macro variation states in Instrument, Drum, or MIDI Effect Racks. Place to the left of a Rack to enable gradual morphing between variation snapshots.
|
|
689
|
+
|
|
690
|
+
### Parameters
|
|
691
|
+
|
|
692
|
+
| Parameter | Range / Values | Notes |
|
|
693
|
+
|-----------|---------------|-------|
|
|
694
|
+
| Transition Time | ms, seconds, or synced | Duration of the morph between variations |
|
|
695
|
+
| Transition Mode | Timed, Synced, Manual | How transitions are triggered |
|
|
696
|
+
| Manual Slider | 0-100% | Direct crossfade control in Manual mode |
|
|
697
|
+
| Variation Automation | clip-automatable | Automate which variation to transition to |
|
|
698
|
+
|
|
699
|
+
### Tips
|
|
700
|
+
- Automate the variation selector in arrangement view for evolving macro changes over time.
|
|
701
|
+
- Use synced transitions for beat-locked morphs between sound states.
|
|
702
|
+
- Manual mode via MIDI-mapped slider gives real-time performance control.
|
|
703
|
+
- Must be placed immediately to the left of the target Rack.
|
|
704
|
+
|
|
705
|
+
---
|
|
706
|
+
|
|
707
|
+
## 19. Slink LFO / Slink LFO CV / Slink Filter / Slink MIDI (M4L — User Pack)
|
|
708
|
+
|
|
709
|
+
**Category:** Max for Live (various types)
|
|
710
|
+
**Developer:** Hypnus Records (Michel Iseneld + Alexander Berg / Dorisburg + Chaos Culture)
|
|
711
|
+
**Pack:** Slink Devices (EUR 59)
|
|
712
|
+
**Requirements:** Live 12 Standard + Max for Live 12.0+
|
|
713
|
+
|
|
714
|
+
### What They Do
|
|
715
|
+
Four devices built on the "Slink wave engine" — a modulation source modeled on the natural movement of water. Produces organic, fluid, interconnected modulation signals.
|
|
716
|
+
|
|
717
|
+
### Slink LFO
|
|
718
|
+
|
|
719
|
+
| Parameter | Notes |
|
|
720
|
+
|-----------|-------|
|
|
721
|
+
| Slink Wave Engine | Core modulation generator — fluid, water-like motion |
|
|
722
|
+
| 16 Modulation Signals | Independent but interconnected modulation outputs |
|
|
723
|
+
| 32 Possible Outputs | Mappable to parameters throughout the project |
|
|
724
|
+
| Sample & Hold Section | Triggered by external MIDI input |
|
|
725
|
+
| Standard mapping | Map to any Live parameter |
|
|
726
|
+
|
|
727
|
+
**Slink LFO CV:** Same engine, outputs CV signals for hardware gear.
|
|
728
|
+
|
|
729
|
+
### Slink Filter
|
|
730
|
+
|
|
731
|
+
| Parameter | Notes |
|
|
732
|
+
|-----------|-------|
|
|
733
|
+
| 32 Bandpass Filters | Filter bank with amplitude automated by Slink wave |
|
|
734
|
+
| Advanced Tab | Extended controls for spectral stereo morphing |
|
|
735
|
+
| Frequency Spectrum Mod | From gentle analog drift to dramatic spectral changes |
|
|
736
|
+
|
|
737
|
+
### Slink MIDI
|
|
738
|
+
|
|
739
|
+
| Parameter | Notes |
|
|
740
|
+
|-----------|-------|
|
|
741
|
+
| Wave Engine 1 | Triggers notes when wave exceeds threshold |
|
|
742
|
+
| Wave Engine 2 | Modulates pitch within chosen musical scale |
|
|
743
|
+
| Scale / Root Note | Constrains pitch output to key |
|
|
744
|
+
| Color Knob | Emphasizes particular notes and harmonic intervals |
|
|
745
|
+
| 16 Clock Dividers | Each with 3 trigger conditions — creates organic rhythmic sequencing |
|
|
746
|
+
|
|
747
|
+
### Tips
|
|
748
|
+
- Slink LFO's interconnected signals mean parameters modulated by the same engine move in related but non-identical ways — creates coherent organic motion.
|
|
749
|
+
- Slink Filter is unique — no other device offers a 32-band filter bank automated by a fluid simulation.
|
|
750
|
+
- Slink MIDI generates melodies from the wave engine — use as a generative note source.
|
|
751
|
+
- The water-inspired engine excels at slow, evolving, ambient-style modulation.
|
|
752
|
+
|
|
753
|
+
---
|
|
754
|
+
|
|
755
|
+
## 20. Iris Devices Cellular Mod (M4L — User)
|
|
756
|
+
|
|
757
|
+
**Category:** Max for Live > Max MIDI Effect (modulator)
|
|
758
|
+
**Developer:** Iris Ipsum (IrisS02)
|
|
759
|
+
**Price:** Free
|
|
760
|
+
**Requirements:** Live 10.1.18+, Max 8.1.5+
|
|
761
|
+
|
|
762
|
+
### What It Does
|
|
763
|
+
Generates complex modulation signals through a 9-bit cellular automata system. Each new generation is triggered by incoming MIDI. 256 rule sets produce different behavioral patterns — from ordered to chaotic.
|
|
764
|
+
|
|
765
|
+
### Parameters
|
|
766
|
+
|
|
767
|
+
| Parameter | Range / Values | Notes |
|
|
768
|
+
|-----------|---------------|-------|
|
|
769
|
+
| Rule Set | 0-255 | Selects the cellular automaton rule (each produces unique patterns) |
|
|
770
|
+
| Trigger | incoming MIDI | New generations computed on MIDI input |
|
|
771
|
+
| Map | any Live parameter | Output mapped to device parameters |
|
|
772
|
+
| 9-bit State | visual display | Shows current automaton state |
|
|
773
|
+
|
|
774
|
+
### Tips
|
|
775
|
+
- Low rule numbers tend to produce simple, repeating patterns; higher numbers trend toward chaos.
|
|
776
|
+
- Rule 30 and Rule 110 are mathematically famous for producing complex behavior from simple rules.
|
|
777
|
+
- Because it triggers on MIDI, modulation rhythm is locked to your playing or MIDI clip.
|
|
778
|
+
- Experiment with rules — small changes can produce dramatically different modulation character.
|
|
779
|
+
|
|
780
|
+
---
|
|
781
|
+
|
|
782
|
+
## 21. IrisIpsum MCLFO (M4L — User)
|
|
783
|
+
|
|
784
|
+
**Category:** Max for Live > Max Audio Effect (modulator)
|
|
785
|
+
**Developer:** Iris Ipsum (IrisS02)
|
|
786
|
+
**Price:** Free
|
|
787
|
+
**Requirements:** Live 11.0.12+, Max 8.5.3+
|
|
788
|
+
|
|
789
|
+
### What It Does
|
|
790
|
+
Nine independent sine-wave LFOs, each mappable to a separate parameter. Frequency ratios between oscillators are linked via seven relationship modes, creating complex but coherent multi-parameter modulation from a single device.
|
|
791
|
+
|
|
792
|
+
### Parameters
|
|
793
|
+
|
|
794
|
+
| Parameter | Range / Values | Notes |
|
|
795
|
+
|-----------|---------------|-------|
|
|
796
|
+
| LFO Channels | 9 sine oscillators | Each independently mappable |
|
|
797
|
+
| Map (x9) | any Live parameter | One target per oscillator |
|
|
798
|
+
| Variable Range | per-mapping | Min/max output range per mapping |
|
|
799
|
+
| Frequency Ratio Mode | Harmonic, Subharmonic, Exponential, Deviate, Decide, Increment, Spread | How the 9 frequencies relate to each other |
|
|
800
|
+
| Base Frequency | Hz | Master rate that others derive from |
|
|
801
|
+
|
|
802
|
+
### Frequency Ratio Modes
|
|
803
|
+
|
|
804
|
+
| Mode | Relationship |
|
|
805
|
+
|------|-------------|
|
|
806
|
+
| **Harmonic** | Integer multiples of base frequency (1x, 2x, 3x...) |
|
|
807
|
+
| **Subharmonic** | Integer divisions of base frequency (1/1, 1/2, 1/3...) |
|
|
808
|
+
| **Exponential** | Exponentially increasing ratios |
|
|
809
|
+
| **Deviate** | Small random deviations from base |
|
|
810
|
+
| **Decide** | Random selection per channel |
|
|
811
|
+
| **Increment** | Linear incremental offsets |
|
|
812
|
+
| **Spread** | Even spread across a frequency range |
|
|
813
|
+
|
|
814
|
+
### Tips
|
|
815
|
+
- Harmonic mode creates musically related modulation — parameters move in rhythmic lockstep.
|
|
816
|
+
- Subharmonic mode creates slow, evolving polyrhythmic relationships.
|
|
817
|
+
- Deviate mode = organic drift — all LFOs near the same rate but slightly different.
|
|
818
|
+
- 9 channels means you can modulate an entire synth's parameters from one device.
|
|
819
|
+
|
|
820
|
+
---
|
|
821
|
+
|
|
822
|
+
## Quick Decision Matrix
|
|
823
|
+
|
|
824
|
+
| Need | Best Device | Why |
|
|
825
|
+
|------|------------|-----|
|
|
826
|
+
| **Thicken / widen a sound** | Chorus-Ensemble (Ensemble mode) | Three-voice chorus, instant width |
|
|
827
|
+
| **Classic phaser sweep** | Phaser-Flanger (Phaser, Earth) | Musical notch sweep, adjustable depth |
|
|
828
|
+
| **Metallic flanger jet** | Phaser-Flanger (Flanger, Space) | Comb filter + feedback resonance |
|
|
829
|
+
| **Subtle doubling / ADT** | Phaser-Flanger (Doubler) or Chorus-Ensemble (Classic, low Amount) | Micro-delay thickening |
|
|
830
|
+
| **Pitch harmony / shifting** | Shifter (Pitch mode) | Chromatic pitch shift with delay |
|
|
831
|
+
| **Ring mod / metallic texture** | Shifter (Ring mode) | Non-harmonic frequency shifting + drive |
|
|
832
|
+
| **Melodic pitch from audio** | Shifter (MIDI sidechain) | Play notes via MIDI, applied to audio |
|
|
833
|
+
| **Sidechain-pump without compressor** | Auto Pan-Tremolo (Tremolo, Square) | Volume gating synced to tempo |
|
|
834
|
+
| **Expressive tremolo** | Auto Pan-Tremolo (Tremolo, Vintage + Dynamic Freq Mod) | Amplitude-reactive rate |
|
|
835
|
+
| **Stereo movement / panning** | Auto Pan-Tremolo (Panning) | LFO-driven stereo placement |
|
|
836
|
+
| **Modulate any parameter (simple)** | LFO (M4L stock) | 7 waveforms, 8 mappings, reliable |
|
|
837
|
+
| **Custom modulation shape** | Shaper (M4L stock) | Draw arbitrary breakpoint envelopes |
|
|
838
|
+
| **Audio-reactive modulation** | Envelope Follower (M4L stock) or MFA Follower | Amplitude tracking to parameter |
|
|
839
|
+
| **Audio-reactive random** | MFA Audio S&H | Random values on audio threshold |
|
|
840
|
+
| **Dub throws (audio-triggered)** | MFA Audiodubber | Spike to max on audio peaks |
|
|
841
|
+
| **Dub throws (autonomous)** | MFA Autodubber | Self-running probabilistic spikes |
|
|
842
|
+
| **Audio-rate amplitude tracking** | MFA Gain Tracker | Direct, fast amplitude-to-modulation |
|
|
843
|
+
| **Advanced tempo-synced LFO** | MFA LFOx | BPM-locked, cycle reset, probability |
|
|
844
|
+
| **Multi-parameter macro** | MFA X-Control (rack) | 32-64 params from rack macros |
|
|
845
|
+
| **Step-sequenced modulation** | Ministeps (Movers) | 3x 8-step sequencers, 5 output layers |
|
|
846
|
+
| **Custom envelope modulation** | Functions (Movers) | Breakpoint functions, 5 output layers |
|
|
847
|
+
| **Rack variation morphing** | Smooth Automator | Timed transitions between rack variations |
|
|
848
|
+
| **Organic fluid modulation** | Slink LFO | Water-physics engine, 16 signals |
|
|
849
|
+
| **Spectral filter animation** | Slink Filter | 32 bandpass filters, wave-animated |
|
|
850
|
+
| **Generative melody from physics** | Slink MIDI | Wave engine generates notes in scale |
|
|
851
|
+
| **Cellular automata modulation** | Iris Cellular Mod | 256 rules, MIDI-triggered generations |
|
|
852
|
+
| **9-channel coherent LFOs** | IrisIpsum MCLFO | 9 sine LFOs with ratio relationships |
|
|
853
|
+
| **Live looping / layering** | Looper | Record, overdub, speed, reverse, feedback FX |
|
|
854
|
+
|
|
855
|
+
---
|
|
856
|
+
|
|
857
|
+
## Device Location Quick Reference
|
|
858
|
+
|
|
859
|
+
| Device | Browser Path | Type |
|
|
860
|
+
|--------|-------------|------|
|
|
861
|
+
| Chorus-Ensemble | Audio Effects > Chorus-Ensemble | Native |
|
|
862
|
+
| Phaser-Flanger | Audio Effects > Phaser-Flanger | Native |
|
|
863
|
+
| Shifter | Audio Effects > Shifter | Native |
|
|
864
|
+
| Auto Pan-Tremolo | Audio Effects > Auto Pan | Native |
|
|
865
|
+
| Looper | Audio Effects > Looper | Native |
|
|
866
|
+
| LFO | Max Audio Effect > LFO | M4L Stock |
|
|
867
|
+
| Shaper | Max Audio Effect > Shaper | M4L Stock |
|
|
868
|
+
| Envelope Follower | Max Audio Effect > Envelope Follower | M4L Stock |
|
|
869
|
+
| MFA Mod Squad devices | User Library > Presets > ... (CLX_05) | M4L User |
|
|
870
|
+
| Functions / Ministeps | User Library > Presets > ... (CLX_02) | M4L User |
|
|
871
|
+
| Smooth Automator | User Library > Presets > ... (CLX_02) | M4L User |
|
|
872
|
+
| Slink devices | Packs > Slink Devices | M4L User Pack |
|
|
873
|
+
| Iris Cellular Mod | User Library > ... | M4L User |
|
|
874
|
+
| IrisIpsum MCLFO | User Library > ... | M4L User |
|