livepilot 1.15.0-beta → 1.16.1
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 +206 -3
- package/README.md +11 -11
- package/m4l_device/LivePilot_Analyzer.amxd +0 -0
- package/m4l_device/livepilot_bridge.js +1 -1
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/atlas/device_atlas.json +91219 -7161
- package/mcp_server/atlas/enrichments/audio_effects/pitch_hack.yaml +61 -0
- package/mcp_server/atlas/enrichments/audio_effects/pitchloop89.yaml +111 -0
- package/mcp_server/atlas/enrichments/audio_effects/re_enveloper.yaml +51 -0
- package/mcp_server/atlas/enrichments/audio_effects/snipper.yaml +36 -0
- package/mcp_server/atlas/enrichments/audio_effects/spectral_blur.yaml +64 -0
- package/mcp_server/atlas/enrichments/instruments/bell_tower.yaml +37 -0
- package/mcp_server/atlas/enrichments/instruments/granulator_iii.yaml +124 -0
- package/mcp_server/atlas/enrichments/instruments/harmonic_drone_generator.yaml +83 -0
- package/mcp_server/atlas/enrichments/instruments/impulse.yaml +47 -0
- package/mcp_server/atlas/enrichments/instruments/sting_iftah.yaml +44 -0
- package/mcp_server/atlas/enrichments/midi_effects/expressive_chords.yaml +38 -0
- package/mcp_server/atlas/enrichments/midi_effects/filler.yaml +32 -0
- package/mcp_server/atlas/enrichments/midi_effects/microtuner.yaml +83 -0
- package/mcp_server/atlas/enrichments/midi_effects/patterns_iftah.yaml +38 -0
- package/mcp_server/atlas/enrichments/midi_effects/phase_pattern.yaml +51 -0
- package/mcp_server/atlas/enrichments/midi_effects/polyrhythm.yaml +46 -0
- package/mcp_server/atlas/enrichments/midi_effects/retrigger.yaml +40 -0
- package/mcp_server/atlas/enrichments/midi_effects/slice_shuffler.yaml +39 -0
- package/mcp_server/atlas/enrichments/midi_effects/sq_sequencer.yaml +39 -0
- package/mcp_server/atlas/enrichments/midi_effects/stages.yaml +38 -0
- package/mcp_server/atlas/enrichments/utility/arrangement_looper.yaml +31 -0
- package/mcp_server/atlas/enrichments/utility/cv_clock_in.yaml +25 -0
- package/mcp_server/atlas/enrichments/utility/cv_clock_out.yaml +25 -0
- package/mcp_server/atlas/enrichments/utility/cv_envelope_follower.yaml +38 -0
- package/mcp_server/atlas/enrichments/utility/cv_in.yaml +26 -0
- package/mcp_server/atlas/enrichments/utility/cv_instrument.yaml +34 -0
- package/mcp_server/atlas/enrichments/utility/cv_lfo.yaml +38 -0
- package/mcp_server/atlas/enrichments/utility/cv_shaper.yaml +35 -0
- package/mcp_server/atlas/enrichments/utility/cv_triggers.yaml +26 -0
- package/mcp_server/atlas/enrichments/utility/cv_utility.yaml +37 -0
- package/mcp_server/atlas/enrichments/utility/performer.yaml +36 -0
- package/mcp_server/atlas/enrichments/utility/prearranger.yaml +36 -0
- package/mcp_server/atlas/enrichments/utility/rotating_rhythm_generator.yaml +35 -0
- package/mcp_server/atlas/enrichments/utility/surround_panner.yaml +40 -0
- package/mcp_server/atlas/enrichments/utility/variations.yaml +40 -0
- package/mcp_server/atlas/enrichments/utility/vector_map.yaml +36 -0
- package/mcp_server/atlas/tools.py +30 -2
- package/mcp_server/runtime/remote_commands.py +3 -0
- package/mcp_server/sample_engine/tools.py +738 -60
- package/mcp_server/server.py +18 -6
- package/mcp_server/splice_client/client.py +583 -65
- package/mcp_server/splice_client/http_bridge.py +434 -0
- package/mcp_server/splice_client/models.py +278 -2
- package/mcp_server/splice_client/quota.py +229 -0
- package/mcp_server/tools/_analyzer_engine/__init__.py +4 -0
- package/mcp_server/tools/_analyzer_engine/sample.py +73 -0
- package/mcp_server/tools/analyzer.py +730 -29
- package/mcp_server/tools/browser.py +164 -13
- package/mcp_server/tools/devices.py +56 -11
- package/mcp_server/tools/mixing.py +64 -15
- package/mcp_server/tools/scales.py +18 -6
- package/mcp_server/tools/tracks.py +92 -4
- package/package.json +2 -2
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/_clip_helpers.py +86 -0
- package/remote_script/LivePilot/_drum_helpers.py +40 -0
- package/remote_script/LivePilot/_scale_helpers.py +87 -0
- package/remote_script/LivePilot/arrangement.py +44 -15
- package/remote_script/LivePilot/clips.py +182 -2
- package/remote_script/LivePilot/devices.py +82 -2
- package/remote_script/LivePilot/notes.py +17 -2
- package/remote_script/LivePilot/scales.py +31 -16
- package/remote_script/LivePilot/simpler_sample.py +105 -17
- package/server.json +3 -3
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
id: pitch_hack
|
|
2
|
+
name: Pitch Hack
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Versatile pitch-shifting delay for Creative Extensions. Combines
|
|
5
|
+
transposition, reverse, feedback, and randomization on a single delay
|
|
6
|
+
line. Lighter-weight companion to PitchLoop89 — less of a spatial
|
|
7
|
+
architect, more of a per-sound treatment for pitched echoes and random
|
|
8
|
+
reversal textures. The go-to for Akufen-style micro-stutter on hats and
|
|
9
|
+
the random-reverse pitched ghosts that Villalobos uses on every track.
|
|
10
|
+
category: pitch_delay
|
|
11
|
+
character_tags: [pitched, glitchy, reversed, randomized, micro_stutter]
|
|
12
|
+
use_cases: [akufen_stutter, pitched_ghost, reverse_echo, textural_delay]
|
|
13
|
+
genre_affinity:
|
|
14
|
+
primary: [microhouse, deep_minimal, idm, experimental]
|
|
15
|
+
secondary: [dub_techno, electronica]
|
|
16
|
+
complexity: beginner
|
|
17
|
+
introduced_in: "10.0"
|
|
18
|
+
pack: Creative Extensions
|
|
19
|
+
creator: Ableton + Amazing Noises
|
|
20
|
+
class_name: PluginDevice
|
|
21
|
+
|
|
22
|
+
key_parameters:
|
|
23
|
+
- name: "Transpose"
|
|
24
|
+
description: "Pitch shift in semitones + cents on the delayed signal."
|
|
25
|
+
range: [-24, 24]
|
|
26
|
+
unit: "st"
|
|
27
|
+
type: int
|
|
28
|
+
- name: "Delay Time"
|
|
29
|
+
description: "Delay in ms or tempo-synced subdivisions."
|
|
30
|
+
- name: "Feedback"
|
|
31
|
+
description: "Pitched echo feedback. Cascading when transpose is non-zero."
|
|
32
|
+
range: [0.0, 1.0]
|
|
33
|
+
type: float
|
|
34
|
+
- name: "Reverse"
|
|
35
|
+
description: "Reverse-plays the delay buffer."
|
|
36
|
+
type: boolean
|
|
37
|
+
- name: "Randomize"
|
|
38
|
+
description: "Randomizes pitch and/or reverse per repeat. The Villalobos-texture parameter."
|
|
39
|
+
range: [0.0, 1.0]
|
|
40
|
+
type: float
|
|
41
|
+
|
|
42
|
+
signature_techniques:
|
|
43
|
+
- name: "Akufen micro-stutter on hats"
|
|
44
|
+
description: "Short delay (~50ms), Feedback 0.4, Randomize 0.6 → every hi-hat hit gets 2-3 unpredictable pitched ghost echoes."
|
|
45
|
+
aesthetic: [microhouse]
|
|
46
|
+
- name: "Ghost chord tails"
|
|
47
|
+
description: "Chord stab → Reverse on, Transpose +3st, Feedback 0.5 → pitched reverse ghost trails fade out after each stab."
|
|
48
|
+
aesthetic: [deep_minimal]
|
|
49
|
+
- name: "Random pitched percussion"
|
|
50
|
+
description: "Put on a clave or click → Randomize full → each hit decays into a different pitched echo pattern."
|
|
51
|
+
aesthetic: [microhouse, idm]
|
|
52
|
+
|
|
53
|
+
pairings:
|
|
54
|
+
- device: spectral_blur
|
|
55
|
+
rationale: "Feed Pitch Hack's random-pitched output into Spectral Blur's halo for ghost atmospheres under the kick."
|
|
56
|
+
|
|
57
|
+
gotchas:
|
|
58
|
+
- "Randomize above 0.8 can produce notes wildly out of key — gate with key-detection first if harmony matters."
|
|
59
|
+
|
|
60
|
+
learn_more:
|
|
61
|
+
official: "https://www.ableton.com/en/packs/creative-extensions/"
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
id: pitchloop89
|
|
2
|
+
name: PitchLoop89
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Robert Henke's emulation of the 1979 Publison DHM 89 B2 pitch-shifting delay.
|
|
5
|
+
Two independent pitch-shifting delay voices per stereo channel, each with
|
|
6
|
+
their own pitch (±24 semitones), fine detune (±1 semitone), feedback, pan,
|
|
7
|
+
and reverse capability. Sample rate selection, hold function, vibrato LFO
|
|
8
|
+
(sine/square), position modulation LFO with 7 waveforms. THE tool for
|
|
9
|
+
Monolake-style detuned delay clouds, Basic Channel spatial signatures,
|
|
10
|
+
and Arpiar-adjacent shimmered stabs.
|
|
11
|
+
category: pitch_delay
|
|
12
|
+
character_tags: [detuned, shimmering, glitchy, spatial, pitched, experimental, vintage_digital]
|
|
13
|
+
use_cases: [stab_shimmer, detuned_echo, reverse_tail, infinite_feedback, glitched_texture]
|
|
14
|
+
genre_affinity:
|
|
15
|
+
primary: [deep_minimal, dub_techno, ambient, experimental]
|
|
16
|
+
secondary: [microhouse, idm, drone, cinematic]
|
|
17
|
+
complexity: intermediate
|
|
18
|
+
introduced_in: "11.0"
|
|
19
|
+
pack: PitchLoop89
|
|
20
|
+
creator: Robert Henke
|
|
21
|
+
class_name: PluginDevice
|
|
22
|
+
|
|
23
|
+
key_parameters:
|
|
24
|
+
- name: "Pitch A / Pitch B"
|
|
25
|
+
description: "Coarse pitch shift per voice, in semitones. Two voices mean you can split: one +0.05 cents shimmer, one -0.07 cents detune for dual-detune clouds."
|
|
26
|
+
range: [-24, 24]
|
|
27
|
+
unit: "st"
|
|
28
|
+
type: int
|
|
29
|
+
sweet_spots:
|
|
30
|
+
dual_detune_cloud: "+0.05 / -0.07 cents"
|
|
31
|
+
octave_shimmer: "+12 / +0"
|
|
32
|
+
reverse_ambience: "+0 / +0 with reverse on"
|
|
33
|
+
|
|
34
|
+
- name: "Fine A / Fine B"
|
|
35
|
+
description: "Fine detune per voice in cents (±100)."
|
|
36
|
+
range: [-100, 100]
|
|
37
|
+
unit: "cents"
|
|
38
|
+
type: int
|
|
39
|
+
sweet_spots:
|
|
40
|
+
shimmer: "+5 / -7"
|
|
41
|
+
chorus_thick: "+15 / -15"
|
|
42
|
+
|
|
43
|
+
- name: "Feedback A / Feedback B"
|
|
44
|
+
description: "Per-voice feedback. High values (80-95%) produce infinite-ascending or descending pitch spirals. Shepard-tone territory."
|
|
45
|
+
range: [0.0, 1.0]
|
|
46
|
+
type: float
|
|
47
|
+
sweet_spots:
|
|
48
|
+
subtle_echo: 0.35
|
|
49
|
+
pitched_spiral: 0.85
|
|
50
|
+
near_infinite: 0.97
|
|
51
|
+
|
|
52
|
+
- name: "Reverse"
|
|
53
|
+
description: "Per-voice reverse playback. Reverses the delay buffer before pitch shift — creates 'reverse swell' tails from any transient."
|
|
54
|
+
type: boolean
|
|
55
|
+
sweet_spots:
|
|
56
|
+
chord_swell_in: true
|
|
57
|
+
|
|
58
|
+
- name: "Mode"
|
|
59
|
+
description: "Signal routing: L/R (independent), Sum (both voices sum to mono), Cross (voice A to R out, voice B to L out, stereo ping-pong at different pitches)."
|
|
60
|
+
range: ["L/R", "Sum", "Cross"]
|
|
61
|
+
type: enum
|
|
62
|
+
sweet_spots:
|
|
63
|
+
stereo_ping_pong: "Cross"
|
|
64
|
+
mono_layer: "Sum"
|
|
65
|
+
|
|
66
|
+
- name: "Sample Rate"
|
|
67
|
+
description: "Buffer sample rate reduction. Lower values add characterful lo-fi grit — emulates the original Publison's digital artifacts."
|
|
68
|
+
range: [1, 44100]
|
|
69
|
+
unit: "Hz"
|
|
70
|
+
type: int
|
|
71
|
+
sweet_spots:
|
|
72
|
+
vintage_89: 12000
|
|
73
|
+
heavy_lofi: 4000
|
|
74
|
+
|
|
75
|
+
- name: "Vibrato LFO"
|
|
76
|
+
description: "Modulates pitch over time. Sine or square waveform; rate in Hz."
|
|
77
|
+
type: composite
|
|
78
|
+
|
|
79
|
+
- name: "Position LFO"
|
|
80
|
+
description: "Modulates the read position in the delay buffer. Seven waveforms including random. The source of the 'shuddering glitch' and 'fractured rhythm' textures Henke uses."
|
|
81
|
+
type: composite
|
|
82
|
+
|
|
83
|
+
signature_techniques:
|
|
84
|
+
- name: "Shimmer on any stab"
|
|
85
|
+
description: "Put on a chord stab → Pitch A=0, Fine A=+5, Pitch B=0, Fine B=-7, Feedback both at 0.4 → instant detuned shimmer cloud that hangs after the stab."
|
|
86
|
+
aesthetic: [arpiar, microhouse, dub_techno]
|
|
87
|
+
- name: "Reverse-in on chords"
|
|
88
|
+
description: "Enable Reverse on both voices, short delay time → chord swells backwards in before the downbeat. Haunting Monolake effect."
|
|
89
|
+
aesthetic: [dub_techno, cinematic]
|
|
90
|
+
- name: "Infinite Shepard on clicks"
|
|
91
|
+
description: "Feed a single click → Feedback ~0.92, Pitch A=+12, Pitch B=0 → infinite ascending cascade. Classic Henke."
|
|
92
|
+
aesthetic: [experimental, idm]
|
|
93
|
+
- name: "Pitched ghost delay"
|
|
94
|
+
description: "Slow Position LFO with random waveform → delay buffer warps around, producing organic pitched ghosts that never repeat."
|
|
95
|
+
aesthetic: [deep_minimal, experimental]
|
|
96
|
+
|
|
97
|
+
pairings:
|
|
98
|
+
- device: convolution_reverb
|
|
99
|
+
rationale: "PitchLoop89 feeding Convolution Reverb's Farfisa Spring IR = the Basic Channel / Monolake spatial chain."
|
|
100
|
+
- device: granulator_iii
|
|
101
|
+
rationale: "Layer after Granulator for detuned shimmer on top of grain clouds."
|
|
102
|
+
- device: utility
|
|
103
|
+
rationale: "Send a short-decay copy of the source to PitchLoop89 via a return track — leaves the original dry while the pitched tail trails."
|
|
104
|
+
|
|
105
|
+
gotchas:
|
|
106
|
+
- "Feedback above 0.95 can self-oscillate into runaway loop — keep a hand on the mute"
|
|
107
|
+
- "Reverse mode introduces latency equal to the buffer length — sync-critical material needs delay compensation"
|
|
108
|
+
- "Sample Rate very low (<2000Hz) aliases heavily; character, not hi-fi"
|
|
109
|
+
|
|
110
|
+
learn_more:
|
|
111
|
+
official: "https://www.ableton.com/en/packs/pitchloop89/"
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
id: re_enveloper
|
|
2
|
+
name: Re-Enveloper
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Multiband envelope processor with three adjustable frequency bands. Unlike
|
|
5
|
+
compression (which reduces amplitude when over threshold), Re-Enveloper
|
|
6
|
+
reshapes envelope character itself — attack, sustain, decay — independently
|
|
7
|
+
per band. The right tool for 'shorten the decay of this sustained sound so
|
|
8
|
+
it behaves like a stab' or 'expand the transient on the highs only'.
|
|
9
|
+
category: dynamics
|
|
10
|
+
character_tags: [multiband, envelope_shaping, transient, sculpted]
|
|
11
|
+
use_cases: [transient_shape, decay_control, per_band_dynamics, micro_stab]
|
|
12
|
+
genre_affinity:
|
|
13
|
+
primary: [minimal, dub_techno, electronica]
|
|
14
|
+
secondary: [all_genres]
|
|
15
|
+
complexity: intermediate
|
|
16
|
+
introduced_in: "10.0"
|
|
17
|
+
pack: Creative Extensions
|
|
18
|
+
creator: Ableton + Amazing Noises
|
|
19
|
+
class_name: PluginDevice
|
|
20
|
+
|
|
21
|
+
key_parameters:
|
|
22
|
+
- name: "Band Split Frequencies"
|
|
23
|
+
description: "Low/Mid and Mid/High crossover points in Hz."
|
|
24
|
+
range: [20, 20000]
|
|
25
|
+
unit: "Hz"
|
|
26
|
+
type: float
|
|
27
|
+
- name: "C/E Factor (per band)"
|
|
28
|
+
description: "Compression (positive) or Expansion (negative) factor per band."
|
|
29
|
+
range: [-5.0, 5.0]
|
|
30
|
+
type: float
|
|
31
|
+
sweet_spots:
|
|
32
|
+
subtle_expand: 1.5
|
|
33
|
+
aggressive_stab: 3.0
|
|
34
|
+
decay_tightening: -2.0
|
|
35
|
+
- name: "Attack / Release (per band)"
|
|
36
|
+
description: "Envelope-shape time constants for each band independently."
|
|
37
|
+
|
|
38
|
+
signature_techniques:
|
|
39
|
+
- name: "Turn sustained chord into stab"
|
|
40
|
+
description: "Low + mid bands at -3.0 C/E (expansion toward short decay), short release → 4-bar pad becomes punchy 1/4-note stab."
|
|
41
|
+
aesthetic: [deep_minimal]
|
|
42
|
+
- name: "Expand only the snare transient"
|
|
43
|
+
description: "High band 2.5 expansion, slow release → snare crack pops out without affecting kick or toms."
|
|
44
|
+
aesthetic: [all]
|
|
45
|
+
|
|
46
|
+
gotchas:
|
|
47
|
+
- "Expansion factors above 4.0 can cause clipping — compensate output gain."
|
|
48
|
+
- "Crossover bands overlap by ~6dB — not a surgical splitter."
|
|
49
|
+
|
|
50
|
+
learn_more:
|
|
51
|
+
official: "https://www.ableton.com/en/packs/creative-extensions/"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
id: snipper
|
|
2
|
+
name: Snipper
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Audio snippet replayer with pitch modulation (Building Max Devices
|
|
5
|
+
tutorial pack). Re-plays snippets of incoming audio at modulated
|
|
6
|
+
pitches. Small tool, surprisingly aesthetic-critical for microhouse —
|
|
7
|
+
the 'replay this hat with a slightly different pitch each bar' pattern.
|
|
8
|
+
category: audio_rearranger
|
|
9
|
+
character_tags: [replay, pitched, micro_chop, glitch]
|
|
10
|
+
use_cases: [micro_chop, pitched_replay, vocal_stutter]
|
|
11
|
+
genre_affinity:
|
|
12
|
+
primary: [microhouse, deep_minimal, glitch]
|
|
13
|
+
secondary: [idm]
|
|
14
|
+
complexity: intermediate
|
|
15
|
+
introduced_in: "11.0"
|
|
16
|
+
pack: Building Max Devices
|
|
17
|
+
creator: Ableton
|
|
18
|
+
class_name: PluginDevice
|
|
19
|
+
|
|
20
|
+
key_parameters:
|
|
21
|
+
- name: "Snippet Length"
|
|
22
|
+
description: "Duration of the captured snippet."
|
|
23
|
+
- name: "Replay Rate"
|
|
24
|
+
description: "How often the snippet re-triggers."
|
|
25
|
+
- name: "Pitch Modulation"
|
|
26
|
+
description: "Per-replay pitch shift."
|
|
27
|
+
- name: "Randomize"
|
|
28
|
+
description: "Random variation on pitch/replay timing."
|
|
29
|
+
|
|
30
|
+
signature_techniques:
|
|
31
|
+
- name: "Vocal micro-chop"
|
|
32
|
+
description: "Route vocal → Snipper → short snippet, fast replay, pitch mod → instant Akufen-adjacent micro-vocal pattern."
|
|
33
|
+
aesthetic: [microhouse]
|
|
34
|
+
|
|
35
|
+
learn_more:
|
|
36
|
+
pack: "Building Max Devices"
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
id: spectral_blur
|
|
2
|
+
name: Spectral Blur
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Spectral halo/reverb hybrid. Creates reverb-like textures by blurring
|
|
5
|
+
user-defined frequency ranges into dense clouds of delayed/smeared
|
|
6
|
+
harmonic content. Not a real reverb — no IR — but the result behaves
|
|
7
|
+
like one, with more control over which frequency ranges get haloed.
|
|
8
|
+
Freeze button holds the current spectral content indefinitely. The
|
|
9
|
+
tool for ethereal pads from sparse sources and alien textures that
|
|
10
|
+
don't sound like rooms.
|
|
11
|
+
category: spectral_fx
|
|
12
|
+
character_tags: [spectral, halo, reverb_like, ethereal, frozen, frequency_selective]
|
|
13
|
+
use_cases: [halo_pad, ghost_atmosphere, frozen_texture, spectral_bed]
|
|
14
|
+
genre_affinity:
|
|
15
|
+
primary: [ambient, deep_minimal, experimental, drone]
|
|
16
|
+
secondary: [dub_techno, cinematic]
|
|
17
|
+
complexity: intermediate
|
|
18
|
+
introduced_in: "10.0"
|
|
19
|
+
pack: Creative Extensions
|
|
20
|
+
creator: Ableton + Amazing Noises
|
|
21
|
+
class_name: PluginDevice
|
|
22
|
+
|
|
23
|
+
key_parameters:
|
|
24
|
+
- name: "Frequency Range"
|
|
25
|
+
description: "Low and high cutoff of the blurred band. Narrow ranges produce pitched halos; wide ranges produce reverb-like wash."
|
|
26
|
+
- name: "Halo (Grain Length)"
|
|
27
|
+
description: "How long each spectral grain lingers. Short = shimmer; long = sustained bed."
|
|
28
|
+
range: [50, 5000]
|
|
29
|
+
unit: "ms"
|
|
30
|
+
type: float
|
|
31
|
+
sweet_spots:
|
|
32
|
+
subtle_shimmer: 200
|
|
33
|
+
sustained_bed: 2000
|
|
34
|
+
- name: "Residual"
|
|
35
|
+
description: "Amount of dry signal that passes through. 0 = fully wet halo, 1 = hear the source clearly."
|
|
36
|
+
range: [0.0, 1.0]
|
|
37
|
+
type: float
|
|
38
|
+
- name: "Freeze"
|
|
39
|
+
description: "Holds the current spectral content. Manual or MIDI-triggered."
|
|
40
|
+
type: boolean
|
|
41
|
+
|
|
42
|
+
signature_techniques:
|
|
43
|
+
- name: "Ghost atmosphere under the kick"
|
|
44
|
+
description: "Very short source (click), narrow mid band, Halo 3000ms, Residual 0 → continuous ghost bed at -30dB."
|
|
45
|
+
aesthetic: [deep_minimal, ambient]
|
|
46
|
+
- name: "Freeze-and-move"
|
|
47
|
+
description: "Play a chord → hit Freeze → automate frequency-range low/high up the spectrum → harmonic cloud morphs in pitch-space."
|
|
48
|
+
aesthetic: [experimental, drone]
|
|
49
|
+
- name: "Reverse reverb alternative"
|
|
50
|
+
description: "Apply to a short stab with long Halo → get reverse-reverb-like build-in without needing to flip the audio."
|
|
51
|
+
aesthetic: [cinematic, deep_minimal]
|
|
52
|
+
|
|
53
|
+
pairings:
|
|
54
|
+
- device: pitchloop89
|
|
55
|
+
rationale: "PitchLoop89 feeding Spectral Blur = Basic Channel / Monolake ethereal space"
|
|
56
|
+
- device: convolution_reverb
|
|
57
|
+
rationale: "Spectral Blur before Conv Rev compounds the halo with real-space acoustics"
|
|
58
|
+
|
|
59
|
+
gotchas:
|
|
60
|
+
- "Halo times above 3000ms accumulate CPU — freeze the track after print"
|
|
61
|
+
- "Narrow frequency ranges at high levels self-oscillate — keep Residual > 0 or compress"
|
|
62
|
+
|
|
63
|
+
learn_more:
|
|
64
|
+
official: "https://www.ableton.com/en/packs/creative-extensions/"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
id: bell_tower
|
|
2
|
+
name: Bell Tower
|
|
3
|
+
sonic_description: >
|
|
4
|
+
FM bell synthesis M4L example device from the Building Max Devices pack.
|
|
5
|
+
Designed as a tutorial but produces genuinely usable bell/mallet timbres
|
|
6
|
+
via simple FM synthesis. Through Convolution Reverb = thin Arpiar bell
|
|
7
|
+
stab territory.
|
|
8
|
+
synthesis_type: fm_bell
|
|
9
|
+
character_tags: [bell, fm, metallic, percussive]
|
|
10
|
+
use_cases: [bell_stab, pluck, atmospheric_bell]
|
|
11
|
+
genre_affinity:
|
|
12
|
+
primary: [ambient, deep_minimal, arpiar]
|
|
13
|
+
secondary: [experimental, cinematic]
|
|
14
|
+
complexity: beginner
|
|
15
|
+
self_contained: true
|
|
16
|
+
introduced_in: "11.0"
|
|
17
|
+
pack: Building Max Devices
|
|
18
|
+
creator: Ableton
|
|
19
|
+
class_name: PluginDevice
|
|
20
|
+
|
|
21
|
+
key_parameters:
|
|
22
|
+
- name: "Carrier Freq"
|
|
23
|
+
description: "Base pitch."
|
|
24
|
+
- name: "Modulator Ratio"
|
|
25
|
+
description: "Ratio of modulator to carrier — inharmonic ratios give bells, integer ratios give pluck tones."
|
|
26
|
+
- name: "Modulator Depth"
|
|
27
|
+
description: "FM index — brightness/metallic character."
|
|
28
|
+
- name: "Decay"
|
|
29
|
+
description: "Bell decay time."
|
|
30
|
+
|
|
31
|
+
signature_techniques:
|
|
32
|
+
- name: "Arpiar bell through Convolution Reverb"
|
|
33
|
+
description: "Short decay, subtle modulator depth, single hit per bar, through a long cathedral IR → the thin bell stab that recurs in Arpiar tracks."
|
|
34
|
+
aesthetic: [arpiar, deep_minimal]
|
|
35
|
+
|
|
36
|
+
learn_more:
|
|
37
|
+
pack: "Building Max Devices"
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
id: granulator_iii
|
|
2
|
+
name: Granulator III
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Robert Henke's (Monolake) reimagined granular synth. Three playback modes —
|
|
5
|
+
Classic (2 overlapping grains per stereo channel, the Granulator II engine),
|
|
6
|
+
Loop (rhythmic crossfaded sample playback), Cloud (up to 20 unsynced
|
|
7
|
+
overlapping grains). Full MPE for per-note control of grain size, shape,
|
|
8
|
+
and position. Real-time audio capture samples any source in one click.
|
|
9
|
+
The single most-used instrument for evolving texture, drone beds, and
|
|
10
|
+
vocal-chop clouds in deep minimal / microhouse / ambient.
|
|
11
|
+
synthesis_type: granular
|
|
12
|
+
character_tags: [granular, evolving, textural, atmospheric, experimental, organic, cloud]
|
|
13
|
+
use_cases: [texture, drone, vocal_chop, evolving_pad, cloud, re_pitched_loop, atmosphere]
|
|
14
|
+
genre_affinity:
|
|
15
|
+
primary: [deep_minimal, microhouse, ambient, dub_techno, idm]
|
|
16
|
+
secondary: [experimental, drone, cinematic, electronica]
|
|
17
|
+
complexity: intermediate
|
|
18
|
+
self_contained: false # requires a source sample or real-time capture
|
|
19
|
+
introduced_in: "12.0"
|
|
20
|
+
pack: Granulator III
|
|
21
|
+
creator: Robert Henke
|
|
22
|
+
class_name: PluginDevice
|
|
23
|
+
|
|
24
|
+
key_parameters:
|
|
25
|
+
- name: "Mode"
|
|
26
|
+
description: "Playback mode. Classic = 2 overlapping grains per channel (G II engine). Loop = rhythmic crossfaded playback synced to clip tempo. Cloud = up to 20 unsynced overlapping grains for drones/textures."
|
|
27
|
+
range: ["Classic", "Loop", "Cloud"]
|
|
28
|
+
type: enum
|
|
29
|
+
sweet_spots:
|
|
30
|
+
rhythmic_micro_loop: "Loop"
|
|
31
|
+
drone_cloud: "Cloud"
|
|
32
|
+
classic_texture: "Classic"
|
|
33
|
+
|
|
34
|
+
- name: "Grain Size"
|
|
35
|
+
description: "Duration of each grain in ms. Shorter = more tonal; longer = more recognizable as source."
|
|
36
|
+
range: [1, 1000]
|
|
37
|
+
unit: "ms"
|
|
38
|
+
type: float
|
|
39
|
+
sweet_spots:
|
|
40
|
+
cloud_drone: 200
|
|
41
|
+
vocal_grain: 500
|
|
42
|
+
micro_stutter: 20
|
|
43
|
+
|
|
44
|
+
- name: "Position"
|
|
45
|
+
description: "Read-head position in the source sample. Automate this for smooth source traversal."
|
|
46
|
+
range: [0.0, 1.0]
|
|
47
|
+
type: float
|
|
48
|
+
|
|
49
|
+
- name: "Position Random"
|
|
50
|
+
description: "Randomness added to read-head position per grain. Essential for Cloud-mode non-repeating texture."
|
|
51
|
+
range: [0.0, 1.0]
|
|
52
|
+
type: float
|
|
53
|
+
sweet_spots:
|
|
54
|
+
locked_loop: 0.0
|
|
55
|
+
organic_scatter: 0.3
|
|
56
|
+
full_chaos: 1.0
|
|
57
|
+
|
|
58
|
+
- name: "Pitch Random"
|
|
59
|
+
description: "Per-grain pitch detune in semitones. Low values give vintage tape wobble; high values give chord-cloud effects."
|
|
60
|
+
range: [0.0, 24.0]
|
|
61
|
+
unit: "st"
|
|
62
|
+
type: float
|
|
63
|
+
sweet_spots:
|
|
64
|
+
tape_wobble: 0.15
|
|
65
|
+
chord_cloud: 7.0
|
|
66
|
+
octave_chaos: 12.0
|
|
67
|
+
|
|
68
|
+
- name: "Grain Density"
|
|
69
|
+
description: "How many grains overlap at once. Higher = denser wall of sound."
|
|
70
|
+
range: [1, 20]
|
|
71
|
+
type: int
|
|
72
|
+
sweet_spots:
|
|
73
|
+
classic: 2
|
|
74
|
+
cloud_pad: 12
|
|
75
|
+
wall_of_sound: 20
|
|
76
|
+
|
|
77
|
+
- name: "Spray"
|
|
78
|
+
description: "Time randomization of grain onsets. Prevents periodic artifacts that make granular sound 'machine-like'."
|
|
79
|
+
range: [0.0, 1.0]
|
|
80
|
+
type: float
|
|
81
|
+
sweet_spots:
|
|
82
|
+
organic: 0.2
|
|
83
|
+
fully_asynchronous: 0.6
|
|
84
|
+
|
|
85
|
+
signature_techniques:
|
|
86
|
+
- name: "Instant deep-minimal texture"
|
|
87
|
+
description: >
|
|
88
|
+
Load any vocal snippet or field recording → Cloud mode, Grain Size 200-500ms,
|
|
89
|
+
Position Random 0.3, Pitch Random 0.1 → immediate organic evolving bed.
|
|
90
|
+
aesthetic: [microhouse, deep_minimal, ambient]
|
|
91
|
+
- name: "Rhythmic break re-chop"
|
|
92
|
+
description: >
|
|
93
|
+
Load a drum break → Loop mode, sync to clip tempo → automate Position in
|
|
94
|
+
short jumps → Akufen-style micro-edit patterns without manual slicing.
|
|
95
|
+
aesthetic: [microhouse, idm]
|
|
96
|
+
- name: "Vocal-to-chord-cloud"
|
|
97
|
+
description: >
|
|
98
|
+
Sustained vowel sample → Cloud mode, Pitch Random 7st, Grain Size 400ms
|
|
99
|
+
→ vocal becomes harmonic cloud without recognizable words.
|
|
100
|
+
aesthetic: [ambient, deep_minimal]
|
|
101
|
+
- name: "Real-time capture and grain"
|
|
102
|
+
description: >
|
|
103
|
+
Set up Granulator on a return track, route any source to it, hit Capture,
|
|
104
|
+
then grain the just-captured audio. Zero commitment to the source — if
|
|
105
|
+
you don't like the grain, record a new slice.
|
|
106
|
+
aesthetic: [experimental, ambient]
|
|
107
|
+
|
|
108
|
+
pairings:
|
|
109
|
+
- device: convolution_reverb
|
|
110
|
+
rationale: "Henke-canonical combo — grain clouds through a long hall IR = Basic Channel / Monolake spatial signature"
|
|
111
|
+
- device: pitchloop89
|
|
112
|
+
rationale: "Pair on output for detuned shimmer on top of the evolving texture"
|
|
113
|
+
- device: microtuner
|
|
114
|
+
rationale: "Feed Granulator through Microtuner for microtonal grain-cloud beds"
|
|
115
|
+
|
|
116
|
+
gotchas:
|
|
117
|
+
- "Cloud mode with 20 grains + 500ms size is CPU-heavy — freeze the track after print"
|
|
118
|
+
- "Real-time Capture samples whatever routes to the track — put on a return to grain a single source cleanly"
|
|
119
|
+
- "Position at 1.0 (end of sample) goes silent — keep Position + Grain Size below 1.0 of the sample duration"
|
|
120
|
+
- "Grain Size below 20ms starts producing audible tonal artifacts — good for FM-like textures, bad for 'natural' grain"
|
|
121
|
+
|
|
122
|
+
learn_more:
|
|
123
|
+
official: "https://www.ableton.com/en/packs/granulator-iii/"
|
|
124
|
+
creator_site: "https://roberthenke.com/technology/granulator3.html"
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
id: harmonic_drone_generator
|
|
2
|
+
name: Harmonic Drone Generator
|
|
3
|
+
sonic_description: >
|
|
4
|
+
8-voice Max for Live drone synth by Berlin-based Expert Math (shipped inside
|
|
5
|
+
Drone Lab). Each voice has its own tuning assignment, and the device
|
|
6
|
+
supports multiple tuning systems — Solfeggio frequencies, Pythagorean,
|
|
7
|
+
Indonesian Pelog, Indian temperaments, plus equal and just intonation.
|
|
8
|
+
Produces sustained harmonic drones with microtonal beating that equal-
|
|
9
|
+
tempered synths architecturally cannot generate. The secret weapon for
|
|
10
|
+
a harmonic bed that sits under a whole track at -30 dB and makes it
|
|
11
|
+
sound like nothing else.
|
|
12
|
+
synthesis_type: additive_drone
|
|
13
|
+
character_tags: [drone, microtonal, sustained, harmonic, meditative, evolving, dark]
|
|
14
|
+
use_cases: [drone_bed, harmonic_atmosphere, microtonal_pad, ambient_bed, tension_bed]
|
|
15
|
+
genre_affinity:
|
|
16
|
+
primary: [ambient, deep_minimal, dub_techno, drone, experimental]
|
|
17
|
+
secondary: [cinematic, dark_ambient, microhouse]
|
|
18
|
+
complexity: intermediate
|
|
19
|
+
self_contained: true
|
|
20
|
+
introduced_in: "12.0"
|
|
21
|
+
pack: Drone Lab
|
|
22
|
+
creator: Expert Math (Berlin)
|
|
23
|
+
class_name: PluginDevice
|
|
24
|
+
|
|
25
|
+
key_parameters:
|
|
26
|
+
- name: "Tuning System"
|
|
27
|
+
description: "Selects the scale used to map voices. Each tuning produces a different harmonic flavor."
|
|
28
|
+
range: ["Equal", "Just", "Pythagorean", "Solfeggio", "Pelog", "Indian"]
|
|
29
|
+
type: enum
|
|
30
|
+
sweet_spots:
|
|
31
|
+
deep_minimal_bed: "Just"
|
|
32
|
+
dark_meditation: "Solfeggio"
|
|
33
|
+
exotic_mystery: "Pelog"
|
|
34
|
+
|
|
35
|
+
- name: "Voice Count"
|
|
36
|
+
description: "How many of the 8 voices are active. Fewer voices = purer drone; more voices = denser harmonic cloud."
|
|
37
|
+
range: [1, 8]
|
|
38
|
+
type: int
|
|
39
|
+
sweet_spots:
|
|
40
|
+
sub_drone: 2
|
|
41
|
+
full_cloud: 8
|
|
42
|
+
|
|
43
|
+
- name: "Per-voice pitch"
|
|
44
|
+
description: "Each voice has its own pitch assignment. Spread across the scale or stack on root for subtle detuned bed."
|
|
45
|
+
type: composite
|
|
46
|
+
|
|
47
|
+
- name: "Detune"
|
|
48
|
+
description: "Global detune amount. Low values (5-15 cents) give tape-warble; high values break into chord clouds."
|
|
49
|
+
range: [0.0, 100.0]
|
|
50
|
+
unit: "cents"
|
|
51
|
+
type: float
|
|
52
|
+
|
|
53
|
+
- name: "Amp Envelope"
|
|
54
|
+
description: "Long attack (5-10s) for slow-swell pads; short attack for staccato 'one note' hits."
|
|
55
|
+
type: composite
|
|
56
|
+
|
|
57
|
+
signature_techniques:
|
|
58
|
+
- name: "Minimal-techno underlay"
|
|
59
|
+
description: "Just intonation tuning, all 8 voices active but voiced as a sparse cluster (root + 5 + minor 3 + octave), level at -30 dB → sits under the whole track as a harmonic shadow."
|
|
60
|
+
aesthetic: [deep_minimal, dub_techno]
|
|
61
|
+
- name: "Pelog mystery bed"
|
|
62
|
+
description: "Indonesian Pelog scale, 5 voices, long reverb send → off-grid harmonic character that sounds ancient without sounding 'wrong'."
|
|
63
|
+
aesthetic: [ambient, deep_minimal]
|
|
64
|
+
- name: "Evolving drone with automation"
|
|
65
|
+
description: "Automate Detune over 32 bars from 5 to 40 cents → drone starts as a tight pad and slowly blossoms into a chord cloud."
|
|
66
|
+
aesthetic: [drone, cinematic]
|
|
67
|
+
|
|
68
|
+
pairings:
|
|
69
|
+
- device: microtuner
|
|
70
|
+
rationale: "Microtuner can replace or extend the built-in tunings with user-loaded Scala files."
|
|
71
|
+
- device: convolution_reverb
|
|
72
|
+
rationale: "Cathedral or warehouse IR on the Drone Generator's output = Basic Channel-adjacent sustained bed."
|
|
73
|
+
- device: pitchloop89
|
|
74
|
+
rationale: "Slow Position-LFO modulation on the drone through PitchLoop89 = shuddering pitched cloud."
|
|
75
|
+
|
|
76
|
+
gotchas:
|
|
77
|
+
- "All 8 voices at full level clip the output — use Voice Count or the internal level control"
|
|
78
|
+
- "Long attack envelopes don't trigger instantly — for stabs, use short attack or pre-gate"
|
|
79
|
+
- "Solfeggio frequencies are outside standard tuning — this is intentional; don't try to match to a song's key"
|
|
80
|
+
|
|
81
|
+
learn_more:
|
|
82
|
+
official: "https://www.ableton.com/en/packs/drone-lab/"
|
|
83
|
+
pack: "Drone Lab"
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
id: impulse
|
|
2
|
+
name: Impulse
|
|
3
|
+
sonic_description: >
|
|
4
|
+
Ableton's original drum sampler — 8-pad sample player with per-pad
|
|
5
|
+
pitch, pan, volume, and simple filter/saturator/envelope. Older than
|
|
6
|
+
Drum Rack but still ships with Live; lighter CPU, simpler interface.
|
|
7
|
+
Good for quick one-shot drums when you don't need Drum Rack's full
|
|
8
|
+
chain architecture. The understated alternative when a full Drum Rack
|
|
9
|
+
is overkill.
|
|
10
|
+
synthesis_type: drum_sampler
|
|
11
|
+
character_tags: [drum, sample_player, lightweight, 8_pad]
|
|
12
|
+
use_cases: [quick_drums, single_kit, lightweight_programming]
|
|
13
|
+
genre_affinity:
|
|
14
|
+
primary: [house, techno, all_electronic_drums]
|
|
15
|
+
secondary: [all]
|
|
16
|
+
complexity: beginner
|
|
17
|
+
self_contained: false # requires samples
|
|
18
|
+
introduced_in: "7.0"
|
|
19
|
+
pack: Core Library
|
|
20
|
+
creator: Ableton
|
|
21
|
+
class_name: OriginalDevice
|
|
22
|
+
native: true
|
|
23
|
+
|
|
24
|
+
key_parameters:
|
|
25
|
+
- name: "Per-pad sample slot (8 pads)"
|
|
26
|
+
description: "Each pad holds one sample, mapped to a MIDI note."
|
|
27
|
+
- name: "Start / Transpose / Stretch"
|
|
28
|
+
description: "Per-pad playback controls."
|
|
29
|
+
- name: "Saturator"
|
|
30
|
+
description: "Per-pad one-knob saturator."
|
|
31
|
+
- name: "Filter"
|
|
32
|
+
description: "Per-pad LP/HP filter with envelope."
|
|
33
|
+
- name: "Decay / Mute Group"
|
|
34
|
+
description: "Decay envelope; mute group for hi-hat choke patterns."
|
|
35
|
+
|
|
36
|
+
signature_techniques:
|
|
37
|
+
- name: "Quick-and-dirty drum kit"
|
|
38
|
+
description: "Drag 8 samples onto the pads → play. No chain complexity. Great for sketching before moving to Drum Rack."
|
|
39
|
+
aesthetic: [all]
|
|
40
|
+
- name: "Hi-hat choke pattern"
|
|
41
|
+
description: "Put closed and open hats in the same mute group → playing the open hat kills the closed hat tail. Natural choke behavior."
|
|
42
|
+
aesthetic: [house, techno]
|
|
43
|
+
|
|
44
|
+
gotchas:
|
|
45
|
+
- "Only 8 pads — for bigger kits, use Drum Rack"
|
|
46
|
+
- "No per-pad chain = no per-pad effect insert — use return sends instead"
|
|
47
|
+
- "No MPE support"
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
id: sting_iftah
|
|
2
|
+
name: "Sting (Iftah)"
|
|
3
|
+
sonic_description: >
|
|
4
|
+
16-step acid-line performance tool by Iftah (Generators pack). Combines a
|
|
5
|
+
mono synth voice with a generative sequencer offering 3D pattern morphing
|
|
6
|
+
— up to 256 unique pattern combinations. Built for live improvisation but
|
|
7
|
+
equally useful in the studio as a 'mutating sub-bass generator' when
|
|
8
|
+
detuned and dropped low. Not just for acid tracks.
|
|
9
|
+
synthesis_type: mono_synth_with_sequencer
|
|
10
|
+
character_tags: [acid, mutating, generative, mono, performer_oriented]
|
|
11
|
+
use_cases: [acid_bass, mutating_sub_bass, live_improvisation, generative_bassline]
|
|
12
|
+
genre_affinity:
|
|
13
|
+
primary: [acid_house, psytrance, techno, trance]
|
|
14
|
+
secondary: [deep_minimal, microhouse (with tricks)]
|
|
15
|
+
complexity: intermediate
|
|
16
|
+
self_contained: true
|
|
17
|
+
introduced_in: "11.0"
|
|
18
|
+
pack: Generators by Iftah
|
|
19
|
+
creator: Iftah
|
|
20
|
+
class_name: PluginDevice
|
|
21
|
+
|
|
22
|
+
key_parameters:
|
|
23
|
+
- name: "Note Selection"
|
|
24
|
+
description: "Which notes are available in the sequence."
|
|
25
|
+
- name: "Dynamic Expression"
|
|
26
|
+
description: "Accent / slide patterns — the acid character."
|
|
27
|
+
- name: "Type Morph"
|
|
28
|
+
description: "Slider from random to acid-type sequences."
|
|
29
|
+
- name: "Root Note"
|
|
30
|
+
description: "Transpose the whole pattern."
|
|
31
|
+
- name: "Rate / Beat Division"
|
|
32
|
+
description: "Sequence rate."
|
|
33
|
+
- name: "Density"
|
|
34
|
+
description: "How many of the 16 steps trigger. Low density = sparse bass."
|
|
35
|
+
signature_techniques:
|
|
36
|
+
- name: "Mutating minimal sub-bass"
|
|
37
|
+
description: "Detune heavily, drop pitch low, Density ~15%, low-pass filter → 'acid line' becomes a warm mutating sub-bass that's never the same two bars in a row."
|
|
38
|
+
aesthetic: [deep_minimal, microhouse]
|
|
39
|
+
- name: "Classic acid 303 performance"
|
|
40
|
+
description: "Default patch, full Type Morph to acid, mid density → classic acid line; use 3D morph mapped to a performance controller."
|
|
41
|
+
aesthetic: [acid_house, psytrance]
|
|
42
|
+
|
|
43
|
+
learn_more:
|
|
44
|
+
official: "https://www.ableton.com/en/packs/generators-by-iftah/"
|