livepilot 1.16.0 → 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.
Files changed (50) hide show
  1. package/CHANGELOG.md +75 -5
  2. package/README.md +11 -11
  3. package/m4l_device/LivePilot_Analyzer.amxd +0 -0
  4. package/m4l_device/livepilot_bridge.js +1 -1
  5. package/mcp_server/__init__.py +1 -1
  6. package/mcp_server/atlas/enrichments/audio_effects/pitch_hack.yaml +61 -0
  7. package/mcp_server/atlas/enrichments/audio_effects/pitchloop89.yaml +111 -0
  8. package/mcp_server/atlas/enrichments/audio_effects/re_enveloper.yaml +51 -0
  9. package/mcp_server/atlas/enrichments/audio_effects/snipper.yaml +36 -0
  10. package/mcp_server/atlas/enrichments/audio_effects/spectral_blur.yaml +64 -0
  11. package/mcp_server/atlas/enrichments/instruments/bell_tower.yaml +37 -0
  12. package/mcp_server/atlas/enrichments/instruments/granulator_iii.yaml +124 -0
  13. package/mcp_server/atlas/enrichments/instruments/harmonic_drone_generator.yaml +83 -0
  14. package/mcp_server/atlas/enrichments/instruments/impulse.yaml +47 -0
  15. package/mcp_server/atlas/enrichments/instruments/sting_iftah.yaml +44 -0
  16. package/mcp_server/atlas/enrichments/midi_effects/expressive_chords.yaml +38 -0
  17. package/mcp_server/atlas/enrichments/midi_effects/filler.yaml +32 -0
  18. package/mcp_server/atlas/enrichments/midi_effects/microtuner.yaml +83 -0
  19. package/mcp_server/atlas/enrichments/midi_effects/patterns_iftah.yaml +38 -0
  20. package/mcp_server/atlas/enrichments/midi_effects/phase_pattern.yaml +51 -0
  21. package/mcp_server/atlas/enrichments/midi_effects/polyrhythm.yaml +46 -0
  22. package/mcp_server/atlas/enrichments/midi_effects/retrigger.yaml +40 -0
  23. package/mcp_server/atlas/enrichments/midi_effects/slice_shuffler.yaml +39 -0
  24. package/mcp_server/atlas/enrichments/midi_effects/sq_sequencer.yaml +39 -0
  25. package/mcp_server/atlas/enrichments/midi_effects/stages.yaml +38 -0
  26. package/mcp_server/atlas/enrichments/utility/arrangement_looper.yaml +31 -0
  27. package/mcp_server/atlas/enrichments/utility/cv_clock_in.yaml +25 -0
  28. package/mcp_server/atlas/enrichments/utility/cv_clock_out.yaml +25 -0
  29. package/mcp_server/atlas/enrichments/utility/cv_envelope_follower.yaml +38 -0
  30. package/mcp_server/atlas/enrichments/utility/cv_in.yaml +26 -0
  31. package/mcp_server/atlas/enrichments/utility/cv_instrument.yaml +34 -0
  32. package/mcp_server/atlas/enrichments/utility/cv_lfo.yaml +38 -0
  33. package/mcp_server/atlas/enrichments/utility/cv_shaper.yaml +35 -0
  34. package/mcp_server/atlas/enrichments/utility/cv_triggers.yaml +26 -0
  35. package/mcp_server/atlas/enrichments/utility/cv_utility.yaml +37 -0
  36. package/mcp_server/atlas/enrichments/utility/performer.yaml +36 -0
  37. package/mcp_server/atlas/enrichments/utility/prearranger.yaml +36 -0
  38. package/mcp_server/atlas/enrichments/utility/rotating_rhythm_generator.yaml +35 -0
  39. package/mcp_server/atlas/enrichments/utility/surround_panner.yaml +40 -0
  40. package/mcp_server/atlas/enrichments/utility/variations.yaml +40 -0
  41. package/mcp_server/atlas/enrichments/utility/vector_map.yaml +36 -0
  42. package/mcp_server/sample_engine/tools.py +50 -4
  43. package/mcp_server/server.py +18 -6
  44. package/mcp_server/splice_client/client.py +90 -18
  45. package/mcp_server/splice_client/http_bridge.py +101 -28
  46. package/mcp_server/splice_client/models.py +12 -0
  47. package/mcp_server/tools/analyzer.py +150 -1
  48. package/package.json +2 -2
  49. package/remote_script/LivePilot/__init__.py +1 -1
  50. package/server.json +3 -3
@@ -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/"
@@ -0,0 +1,38 @@
1
+ id: expressive_chords
2
+ name: Expressive Chords
3
+ sonic_description: >
4
+ MIDI chord library + voicing engine. 52 chord sets across gospel, trap,
5
+ R&B, jazz, classical, house, post-rock. MPE-ready — per-note pitch-bend,
6
+ dynamics, articulation. Trigger a root note, get a full voicing; use
7
+ MPE to bend individual voice members.
8
+ category: chord_library
9
+ character_tags: [chord, voicing, library, mpe]
10
+ use_cases: [quick_chords, voicing_variety, harmonic_sketch]
11
+ genre_affinity:
12
+ primary: [gospel, trap, rnb, jazz, classical, house, post_rock]
13
+ secondary: [all]
14
+ complexity: beginner
15
+ introduced_in: "11.0"
16
+ pack: Expressive Chords
17
+ creator: Render Audio + Ableton + Andrew Bruce
18
+ class_name: PluginDevice
19
+
20
+ key_parameters:
21
+ - name: "Chord Set"
22
+ description: "52 sets organized by genre/feel."
23
+ - name: "Root Note"
24
+ description: "Transpose the current voicing."
25
+ - name: "Voicing Variation"
26
+ description: "Swap inversions and voicings within the selected set."
27
+ - name: "MPE Modulation"
28
+ description: "Per-note pitch/velocity from an MPE controller."
29
+ signature_techniques:
30
+ - name: "Sparse post-rock for minimal house"
31
+ description: "Pick post-rock set → let only top 2-3 voices through (gate the others) → sparse open voicings that work as minimal chord stabs."
32
+ aesthetic: [deep_minimal, post_rock]
33
+ - name: "MPE micro-tuning drift on held chord"
34
+ description: "Hold a chord → MPE pitch-bend each voice independently → organic detuning drift."
35
+ aesthetic: [jazz, experimental]
36
+
37
+ learn_more:
38
+ official: "https://www.ableton.com/en/packs/expressive-chords/"
@@ -0,0 +1,32 @@
1
+ id: filler
2
+ name: Filler
3
+ sonic_description: >
4
+ MIDI drum-pattern generator (Building Max Devices). A simple algorithmic
5
+ drum fill generator — useful as a free alternative to Patterns (Iftah)
6
+ when you just need quick drum content.
7
+ category: generator
8
+ character_tags: [drum_generator, algorithmic, simple]
9
+ use_cases: [drum_programming_quickstart, fill_generation]
10
+ genre_affinity:
11
+ primary: [all_electronic_drums]
12
+ complexity: beginner
13
+ introduced_in: "11.0"
14
+ pack: Building Max Devices
15
+ creator: Ableton
16
+ class_name: PluginDevice
17
+
18
+ key_parameters:
19
+ - name: "Density"
20
+ description: "Pattern density — sparse to dense."
21
+ - name: "Drum Voices"
22
+ description: "Which drum pads to fill."
23
+ - name: "Randomize"
24
+ description: "Re-generate pattern with randomization."
25
+
26
+ signature_techniques:
27
+ - name: "Quick drum sketch"
28
+ description: "Dial density, click generate, commit the pattern you like. Move on — don't spend time."
29
+ aesthetic: [all]
30
+
31
+ learn_more:
32
+ pack: "Building Max Devices"
@@ -0,0 +1,83 @@
1
+ id: microtuner
2
+ name: Microtuner
3
+ sonic_description: >
4
+ MIDI device (Max for Live) that applies microtonal tunings to downstream
5
+ instruments. Imports Scala (.scl) files — the standard format for
6
+ microtonal tunings, freely available from the Huygens-Fokker archive.
7
+ Supports pitch count up to 128, arbitrary octave ratios, Lead/Follow mode
8
+ to sync scales across multiple Microtuner instances, polyphonic playback,
9
+ MPE compatibility. Real-time blend-two-scales slider for shapeshifting
10
+ melodies and recasted chords.
11
+ category: tuning
12
+ character_tags: [microtonal, scale, shapeshifting, polyphonic, mpe]
13
+ use_cases: [microtonal_melody, scale_morph, drone_tuning, chord_recasting]
14
+ genre_affinity:
15
+ primary: [ambient, experimental, deep_minimal, drone]
16
+ secondary: [microhouse, jazz_fusion, cinematic]
17
+ complexity: intermediate
18
+ introduced_in: "12.0"
19
+ pack: Microtuner
20
+ creator: Ableton
21
+ class_name: PluginDevice
22
+
23
+ key_parameters:
24
+ - name: "Scale (Deck A / Deck B)"
25
+ description: "Two independent scale slots. Load .scl files by drag-drop. Blend between them via the Blend slider."
26
+ type: composite
27
+
28
+ - name: "Blend"
29
+ description: "Morph between Deck A and Deck B scales in real-time. Automate over 16+ bars for harmonic drift."
30
+ range: [0.0, 1.0]
31
+ type: float
32
+ sweet_spots:
33
+ pure_deck_a: 0.0
34
+ midpoint_morph: 0.5
35
+ automated_drift: "0.0 → 1.0 over 32 bars"
36
+
37
+ - name: "Reference Pitch"
38
+ description: "The reference MIDI note that maps to 'unity' in the scale. Usually 60 (middle C) or 69 (A4 = 440Hz)."
39
+ range: [0, 127]
40
+ type: int
41
+
42
+ - name: "Base Frequency"
43
+ description: "Frequency assigned to the reference pitch. 440Hz standard; try 432Hz for conspiratorial-warmth vibes."
44
+ range: [200, 600]
45
+ unit: "Hz"
46
+ type: float
47
+
48
+ - name: "Lead / Follow"
49
+ description: "In Lead mode, broadcasts its scale via Live's state. In Follow mode, receives from a Lead instance. Use to sync scales across instruments."
50
+ range: ["Lead", "Follow", "None"]
51
+ type: enum
52
+
53
+ signature_techniques:
54
+ - name: "Villalobos-style microtonal melody"
55
+ description: "Load a 19-tone equal-temperament (19-TET) Scala file → play a simple motif → immediately off-grid harmonic character without sounding random."
56
+ aesthetic: [deep_minimal, microhouse]
57
+ - name: "Partch 43-tone drone"
58
+ description: "Load Harry Partch's 43-tone just-intonation scale → apply to Drone Lab's Harmonic Drone Generator → ancient-sounding sustained bed."
59
+ aesthetic: [drone, ambient]
60
+ - name: "Two-scale automated morph"
61
+ description: "Deck A = major scale, Deck B = 19-TET. Automate Blend from 0 to 1 over 16 bars → harmony literally reshapes in time."
62
+ aesthetic: [experimental, deep_minimal]
63
+ - name: "Quarter-tone lead for expressive MPE"
64
+ description: "Load a 24-TET scale + ROLI-style MPE controller → slides and bends fall onto microtonal grid for non-Western expressivity."
65
+ aesthetic: [jazz_fusion, world, experimental]
66
+
67
+ pairings:
68
+ - device: harmonic_drone_generator
69
+ rationale: "Override Drone Generator's built-in tunings with custom Scala imports for unlimited microtonal variety."
70
+ - device: granulator_iii
71
+ rationale: "Microtuner upstream of Granulator = grain-cloud beds in non-standard tunings."
72
+ - device: operator
73
+ rationale: "FM synthesis in alternative tunings produces wild inharmonic spectra — Operator responds especially well."
74
+
75
+ gotchas:
76
+ - "Scale must be loaded BEFORE the downstream instrument receives notes — otherwise Live plays equal-tempered."
77
+ - "MPE works only when the downstream instrument is MPE-capable (Meld, Wavetable with MPE on, Granulator III, etc.)."
78
+ - "Lead/Follow sync requires Live 12.1+."
79
+ - "Some instruments ignore pitch bend beyond ±2 semitones — check the instrument's pitch-bend range before loading exotic scales."
80
+
81
+ learn_more:
82
+ official: "https://www.ableton.com/en/packs/microtuner/"
83
+ scala_archive: "http://www.huygens-fokker.org/microtonality/scales.html"
@@ -0,0 +1,38 @@
1
+ id: patterns_iftah
2
+ name: "Patterns (Iftah)"
3
+ sonic_description: >
4
+ Algorithmic drum generator by Iftah (Generators pack). Six drum voices,
5
+ each with its own generation algorithm. Click Generate → instant drum
6
+ pattern. Click again → different pattern. The microhouse producer's
7
+ one-click sparse-drum solution — dial it to taste, commit.
8
+ category: generator
9
+ character_tags: [algorithmic, drum, one_click, six_voice]
10
+ use_cases: [drum_programming, sparse_beat, quick_ideation, fill_generation]
11
+ genre_affinity:
12
+ primary: [microhouse, deep_minimal, techno, house]
13
+ secondary: [idm, acid, electronica]
14
+ complexity: beginner
15
+ introduced_in: "11.0"
16
+ pack: Generators by Iftah
17
+ creator: Iftah
18
+ class_name: PluginDevice
19
+
20
+ key_parameters:
21
+ - name: "Voice Toggles"
22
+ description: "Enable each of 6 drum voices (kick, snare, closed hat, open hat, rim, shaker) independently."
23
+ - name: "Per-Voice Algorithm"
24
+ description: "Each voice has its own generation logic — pick density/sparsity per voice."
25
+ - name: "Generate Button"
26
+ description: "One click = new pattern. Non-destructive — commit via clip copy."
27
+ - name: "Output MIDI Notes (per voice)"
28
+ description: "Assign each voice to a drum-rack pad note."
29
+ signature_techniques:
30
+ - name: "Sparse microhouse pattern"
31
+ description: "Disable snare + open hat → Generate until pattern feels right → all voices at low density → immediate Villalobos-adjacent groove."
32
+ aesthetic: [microhouse, deep_minimal]
33
+ - name: "Genre-spanning drum ideation"
34
+ description: "Use for fast first-draft drums across any genre — commit the one that fits, adjust by hand."
35
+ aesthetic: [all_electronic]
36
+
37
+ learn_more:
38
+ official: "https://www.ableton.com/en/packs/generators-by-iftah/"
@@ -0,0 +1,51 @@
1
+ id: phase_pattern
2
+ name: Phase Pattern
3
+ sonic_description: >
4
+ Clip-based MIDI transformer by Philip Meyer. Takes an existing clip and
5
+ applies organic timing, pitch, and velocity phase-shifts to produce
6
+ human-feeling variations. Unlike random quantization, Phase Pattern uses
7
+ phase relationships between parameters — timing offset can drive velocity
8
+ swing, pitch can drive timing. The result has coherent 'musicianship'
9
+ rather than random noise. THE microhouse sequencer for 'make this feel
10
+ human without losing the groove'.
11
+ category: transformation
12
+ character_tags: [phase, organic, humanize, coherent_variation, clip_based]
13
+ use_cases: [humanize, swing_drift, organic_timing, coherent_variation]
14
+ genre_affinity:
15
+ primary: [microhouse, deep_minimal, idm]
16
+ secondary: [jazz, electronica, experimental]
17
+ complexity: intermediate
18
+ introduced_in: "12.1"
19
+ pack: MIDI Tools
20
+ creator: Philip Meyer
21
+ class_name: PluginDevice
22
+
23
+ key_parameters:
24
+ - name: "Timing Offset"
25
+ description: "How much each note's start_time can shift from grid. Phase-driven, not random."
26
+ range: [0.0, 1.0]
27
+ type: float
28
+ - name: "Pitch Variation"
29
+ description: "Semitone variation applied in phase with other parameters."
30
+ range: [0, 12]
31
+ unit: "st"
32
+ type: int
33
+ - name: "Velocity Variation"
34
+ description: "Velocity phase-shift depth."
35
+ - name: "Quantize"
36
+ description: "Re-quantize output (locked) or leave free (free-form phase drift)."
37
+ type: enum
38
+
39
+ signature_techniques:
40
+ - name: "Micro-swing for rigid drum patterns"
41
+ description: "Low Timing Offset (0.15), Quantize off → every hit drifts slightly from grid in a coherent, groove-affirming way (no random chaos)."
42
+ aesthetic: [microhouse, deep_minimal]
43
+ - name: "Organic vocal stutter"
44
+ description: "Apply to a vocal chop clip → phase-coherent timing/pitch shifts → chops feel recorded not programmed."
45
+ aesthetic: [microhouse, idm]
46
+
47
+ gotchas:
48
+ - "Results are coherent but still non-deterministic — regenerating gives different output. Commit the version you like."
49
+
50
+ learn_more:
51
+ official: "https://www.ableton.com/en/packs/midi-tools/"
@@ -0,0 +1,46 @@
1
+ id: polyrhythm
2
+ name: Polyrhythm
3
+ sonic_description: >
4
+ Clip-based MIDI generator by Philip Meyer (MIDI Tools pack). Six
5
+ independent pattern generators, each with its own length and density —
6
+ creates polymetric and polyrhythmic patterns impossible to program by
7
+ hand. Includes Euclidean mode. Operates on a clip (not real-time) and
8
+ bakes results back as MIDI notes, so every generation is different and
9
+ every result is editable.
10
+ category: generator
11
+ character_tags: [polyrhythmic, polymeter, euclidean, generative, clip_based]
12
+ use_cases: [asymmetric_drums, hypnotic_pattern, techno_groove, idm_programming]
13
+ genre_affinity:
14
+ primary: [techno, deep_minimal, idm, experimental]
15
+ secondary: [microhouse, ambient, dub_techno]
16
+ complexity: intermediate
17
+ introduced_in: "12.1"
18
+ pack: MIDI Tools
19
+ creator: Philip Meyer
20
+ class_name: PluginDevice
21
+
22
+ key_parameters:
23
+ - name: "Voice Count"
24
+ description: "How many of the 6 pattern generators are active."
25
+ range: [1, 6]
26
+ - name: "Per-Voice Length"
27
+ description: "Step count for each lane independently. Set to non-coincident numbers (11, 13, 16) for polymeter."
28
+ - name: "Per-Voice Density"
29
+ description: "Pulses per step length. Euclidean distribution fills pulses evenly."
30
+ - name: "Output Pitch"
31
+ description: "MIDI note each voice outputs. Assign to drum-pad notes (36/38/42/46) for drum racks."
32
+
33
+ signature_techniques:
34
+ - name: "Asymmetric techno groove"
35
+ description: "Voice 1 = 16 steps / 4 pulses (kick), Voice 2 = 11 steps / 3 pulses (ghost snare), Voice 3 = 13 steps / 7 pulses (hat). Generates pattern that never repeats exactly for hundreds of bars."
36
+ aesthetic: [techno, deep_minimal]
37
+ - name: "Hypnotic micropattern"
38
+ description: "All 6 voices at sparse density (1-3 pulses each) with asymmetric lengths → organic feel that evolves over minutes."
39
+ aesthetic: [deep_minimal, idm]
40
+
41
+ gotchas:
42
+ - "Output is baked into the clip — regenerate replaces the pattern. Save favorites as separate clip."
43
+ - "Euclidean distribution is deterministic — same length+pulses always gives same pattern."
44
+
45
+ learn_more:
46
+ official: "https://www.ableton.com/en/packs/midi-tools/"
@@ -0,0 +1,40 @@
1
+ id: retrigger
2
+ name: Retrigger
3
+ sonic_description: >
4
+ Clip-based MIDI transformer by Philip Meyer. Replaces selected notes
5
+ with rapid repeats (rolls) — velocity curve and time-shape per repeat.
6
+ Quick source of drum fills, hi-hat rolls, buildup stutters. Preserves
7
+ the underlying clip, so you can apply to just the selected region.
8
+ category: transformation
9
+ character_tags: [roll, stutter, fill, drum_roll, urgency]
10
+ use_cases: [drum_fills, hi_hat_rolls, stutter_buildup, tension_increase]
11
+ genre_affinity:
12
+ primary: [dance, breakbeat, techno, house]
13
+ secondary: [all_genres_with_drums]
14
+ complexity: beginner
15
+ introduced_in: "12.1"
16
+ pack: MIDI Tools
17
+ creator: Philip Meyer
18
+ class_name: PluginDevice
19
+
20
+ key_parameters:
21
+ - name: "Note Selection"
22
+ description: "Which notes to retrigger — individual, some, or all."
23
+ - name: "Repeat Count"
24
+ description: "Number of retriggers per note."
25
+ range: [2, 32]
26
+ type: int
27
+ - name: "Time Curve"
28
+ description: "Exponential/linear spacing of repeats — accelerating fills, decelerating decays."
29
+ - name: "Velocity Curve"
30
+ description: "Velocity envelope across the roll — crescendo, decrescendo, flat."
31
+ signature_techniques:
32
+ - name: "Accelerating hi-hat buildup"
33
+ description: "Select 4 hi-hat notes at end of section → Retrigger count 16, exponential curve → accelerating roll into the downbeat."
34
+ aesthetic: [dance, breakbeat]
35
+ - name: "Decelerating snare fill"
36
+ description: "Single snare hit → Retrigger 8 times with linear-to-long decay → natural-feeling fill."
37
+ aesthetic: [all]
38
+
39
+ learn_more:
40
+ official: "https://www.ableton.com/en/packs/midi-tools/"