livepilot 1.9.23 → 1.10.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.
Files changed (191) hide show
  1. package/.claude-plugin/marketplace.json +3 -3
  2. package/AGENTS.md +3 -3
  3. package/CHANGELOG.md +119 -0
  4. package/CONTRIBUTING.md +1 -1
  5. package/README.md +144 -13
  6. package/bin/livepilot.js +87 -0
  7. package/installer/codex.js +147 -0
  8. package/livepilot/.Codex-plugin/plugin.json +2 -2
  9. package/livepilot/.claude-plugin/plugin.json +2 -2
  10. package/livepilot/skills/livepilot-core/SKILL.md +21 -4
  11. package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +34 -0
  12. package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +204 -0
  13. package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +173 -0
  14. package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +211 -0
  15. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +188 -0
  16. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +162 -0
  17. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +229 -0
  18. package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +243 -0
  19. package/livepilot/skills/livepilot-core/references/overview.md +13 -9
  20. package/livepilot/skills/livepilot-core/references/sample-manipulation.md +724 -0
  21. package/livepilot/skills/livepilot-core/references/sound-design-deep.md +140 -0
  22. package/livepilot/skills/livepilot-devices/SKILL.md +16 -2
  23. package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +1 -1
  24. package/livepilot/skills/livepilot-release/SKILL.md +19 -5
  25. package/livepilot/skills/livepilot-sample-engine/SKILL.md +104 -0
  26. package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +87 -0
  27. package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +51 -0
  28. package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +131 -0
  29. package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +45 -0
  30. package/livepilot/skills/livepilot-wonder/SKILL.md +15 -0
  31. package/livepilot.mcpb +0 -0
  32. package/m4l_device/livepilot_bridge.js +1 -1
  33. package/manifest.json +2 -2
  34. package/mcp_server/__init__.py +1 -1
  35. package/mcp_server/atlas/__init__.py +357 -0
  36. package/mcp_server/atlas/device_atlas.json +44067 -0
  37. package/mcp_server/atlas/enrichments/__init__.py +111 -0
  38. package/mcp_server/atlas/enrichments/audio_effects/auto_filter.yaml +162 -0
  39. package/mcp_server/atlas/enrichments/audio_effects/beat_repeat.yaml +183 -0
  40. package/mcp_server/atlas/enrichments/audio_effects/channel_eq.yaml +126 -0
  41. package/mcp_server/atlas/enrichments/audio_effects/chorus_ensemble.yaml +149 -0
  42. package/mcp_server/atlas/enrichments/audio_effects/color_limiter.yaml +109 -0
  43. package/mcp_server/atlas/enrichments/audio_effects/compressor.yaml +159 -0
  44. package/mcp_server/atlas/enrichments/audio_effects/convolution_reverb.yaml +143 -0
  45. package/mcp_server/atlas/enrichments/audio_effects/convolution_reverb_pro.yaml +178 -0
  46. package/mcp_server/atlas/enrichments/audio_effects/delay.yaml +151 -0
  47. package/mcp_server/atlas/enrichments/audio_effects/drum_buss.yaml +142 -0
  48. package/mcp_server/atlas/enrichments/audio_effects/dynamic_tube.yaml +147 -0
  49. package/mcp_server/atlas/enrichments/audio_effects/echo.yaml +167 -0
  50. package/mcp_server/atlas/enrichments/audio_effects/eq_eight.yaml +148 -0
  51. package/mcp_server/atlas/enrichments/audio_effects/eq_three.yaml +121 -0
  52. package/mcp_server/atlas/enrichments/audio_effects/erosion.yaml +103 -0
  53. package/mcp_server/atlas/enrichments/audio_effects/filter_delay.yaml +173 -0
  54. package/mcp_server/atlas/enrichments/audio_effects/gate.yaml +130 -0
  55. package/mcp_server/atlas/enrichments/audio_effects/gated_delay.yaml +133 -0
  56. package/mcp_server/atlas/enrichments/audio_effects/glue_compressor.yaml +142 -0
  57. package/mcp_server/atlas/enrichments/audio_effects/grain_delay.yaml +141 -0
  58. package/mcp_server/atlas/enrichments/audio_effects/hybrid_reverb.yaml +160 -0
  59. package/mcp_server/atlas/enrichments/audio_effects/limiter.yaml +97 -0
  60. package/mcp_server/atlas/enrichments/audio_effects/multiband_dynamics.yaml +174 -0
  61. package/mcp_server/atlas/enrichments/audio_effects/overdrive.yaml +119 -0
  62. package/mcp_server/atlas/enrichments/audio_effects/pedal.yaml +145 -0
  63. package/mcp_server/atlas/enrichments/audio_effects/phaser_flanger.yaml +161 -0
  64. package/mcp_server/atlas/enrichments/audio_effects/redux.yaml +114 -0
  65. package/mcp_server/atlas/enrichments/audio_effects/reverb.yaml +190 -0
  66. package/mcp_server/atlas/enrichments/audio_effects/roar.yaml +159 -0
  67. package/mcp_server/atlas/enrichments/audio_effects/saturator.yaml +146 -0
  68. package/mcp_server/atlas/enrichments/audio_effects/shifter.yaml +154 -0
  69. package/mcp_server/atlas/enrichments/audio_effects/spectral_resonator.yaml +141 -0
  70. package/mcp_server/atlas/enrichments/audio_effects/spectral_time.yaml +164 -0
  71. package/mcp_server/atlas/enrichments/audio_effects/vector_delay.yaml +140 -0
  72. package/mcp_server/atlas/enrichments/audio_effects/vinyl_distortion.yaml +141 -0
  73. package/mcp_server/atlas/enrichments/instruments/analog.yaml +222 -0
  74. package/mcp_server/atlas/enrichments/instruments/bass.yaml +202 -0
  75. package/mcp_server/atlas/enrichments/instruments/collision.yaml +150 -0
  76. package/mcp_server/atlas/enrichments/instruments/drift.yaml +167 -0
  77. package/mcp_server/atlas/enrichments/instruments/electric.yaml +137 -0
  78. package/mcp_server/atlas/enrichments/instruments/emit.yaml +163 -0
  79. package/mcp_server/atlas/enrichments/instruments/meld.yaml +164 -0
  80. package/mcp_server/atlas/enrichments/instruments/operator.yaml +197 -0
  81. package/mcp_server/atlas/enrichments/instruments/poli.yaml +192 -0
  82. package/mcp_server/atlas/enrichments/instruments/sampler.yaml +218 -0
  83. package/mcp_server/atlas/enrichments/instruments/simpler.yaml +217 -0
  84. package/mcp_server/atlas/enrichments/instruments/tension.yaml +156 -0
  85. package/mcp_server/atlas/enrichments/instruments/tree_tone.yaml +162 -0
  86. package/mcp_server/atlas/enrichments/instruments/vector_fm.yaml +165 -0
  87. package/mcp_server/atlas/enrichments/instruments/vector_grain.yaml +166 -0
  88. package/mcp_server/atlas/enrichments/instruments/wavetable.yaml +162 -0
  89. package/mcp_server/atlas/enrichments/midi_effects/arpeggiator.yaml +156 -0
  90. package/mcp_server/atlas/enrichments/midi_effects/bouncy_notes.yaml +93 -0
  91. package/mcp_server/atlas/enrichments/midi_effects/chord.yaml +147 -0
  92. package/mcp_server/atlas/enrichments/midi_effects/melodic_steps.yaml +97 -0
  93. package/mcp_server/atlas/enrichments/midi_effects/note_echo.yaml +108 -0
  94. package/mcp_server/atlas/enrichments/midi_effects/note_length.yaml +97 -0
  95. package/mcp_server/atlas/enrichments/midi_effects/pitch.yaml +76 -0
  96. package/mcp_server/atlas/enrichments/midi_effects/random.yaml +117 -0
  97. package/mcp_server/atlas/enrichments/midi_effects/rhythmic_steps.yaml +103 -0
  98. package/mcp_server/atlas/enrichments/midi_effects/scale.yaml +83 -0
  99. package/mcp_server/atlas/enrichments/midi_effects/step_arp.yaml +112 -0
  100. package/mcp_server/atlas/enrichments/midi_effects/velocity.yaml +119 -0
  101. package/mcp_server/atlas/enrichments/utility/amp.yaml +159 -0
  102. package/mcp_server/atlas/enrichments/utility/cabinet.yaml +109 -0
  103. package/mcp_server/atlas/enrichments/utility/corpus.yaml +150 -0
  104. package/mcp_server/atlas/enrichments/utility/resonators.yaml +131 -0
  105. package/mcp_server/atlas/enrichments/utility/spectrum.yaml +63 -0
  106. package/mcp_server/atlas/enrichments/utility/tuner.yaml +51 -0
  107. package/mcp_server/atlas/enrichments/utility/utility.yaml +136 -0
  108. package/mcp_server/atlas/enrichments/utility/vocoder.yaml +160 -0
  109. package/mcp_server/atlas/scanner.py +236 -0
  110. package/mcp_server/atlas/tools.py +224 -0
  111. package/mcp_server/composer/__init__.py +1 -0
  112. package/mcp_server/composer/engine.py +452 -0
  113. package/mcp_server/composer/layer_planner.py +427 -0
  114. package/mcp_server/composer/prompt_parser.py +329 -0
  115. package/mcp_server/composer/tools.py +201 -0
  116. package/mcp_server/connection.py +53 -8
  117. package/mcp_server/corpus/__init__.py +377 -0
  118. package/mcp_server/device_forge/__init__.py +1 -0
  119. package/mcp_server/device_forge/builder.py +377 -0
  120. package/mcp_server/device_forge/models.py +142 -0
  121. package/mcp_server/device_forge/templates.py +483 -0
  122. package/mcp_server/device_forge/tools.py +162 -0
  123. package/mcp_server/hook_hunter/analyzer.py +23 -0
  124. package/mcp_server/hook_hunter/models.py +1 -0
  125. package/mcp_server/hook_hunter/tools.py +4 -2
  126. package/mcp_server/m4l_bridge.py +1 -0
  127. package/mcp_server/memory/taste_graph.py +68 -1
  128. package/mcp_server/memory/tools.py +15 -4
  129. package/mcp_server/musical_intelligence/detectors.py +14 -1
  130. package/mcp_server/musical_intelligence/tools.py +11 -8
  131. package/mcp_server/persistence/__init__.py +1 -0
  132. package/mcp_server/persistence/base_store.py +82 -0
  133. package/mcp_server/persistence/project_store.py +106 -0
  134. package/mcp_server/persistence/taste_store.py +122 -0
  135. package/mcp_server/preview_studio/models.py +1 -0
  136. package/mcp_server/preview_studio/tools.py +56 -13
  137. package/mcp_server/runtime/capability.py +66 -0
  138. package/mcp_server/runtime/capability_probe.py +137 -0
  139. package/mcp_server/runtime/execution_router.py +143 -0
  140. package/mcp_server/runtime/live_version.py +102 -0
  141. package/mcp_server/runtime/remote_commands.py +87 -0
  142. package/mcp_server/runtime/tools.py +18 -4
  143. package/mcp_server/sample_engine/__init__.py +1 -0
  144. package/mcp_server/sample_engine/analyzer.py +216 -0
  145. package/mcp_server/sample_engine/critics.py +390 -0
  146. package/mcp_server/sample_engine/models.py +193 -0
  147. package/mcp_server/sample_engine/moves.py +127 -0
  148. package/mcp_server/sample_engine/planner.py +186 -0
  149. package/mcp_server/sample_engine/sources.py +540 -0
  150. package/mcp_server/sample_engine/techniques.py +908 -0
  151. package/mcp_server/sample_engine/tools.py +442 -0
  152. package/mcp_server/semantic_moves/__init__.py +3 -0
  153. package/mcp_server/semantic_moves/device_creation_moves.py +237 -0
  154. package/mcp_server/semantic_moves/mix_moves.py +41 -41
  155. package/mcp_server/semantic_moves/performance_moves.py +13 -13
  156. package/mcp_server/semantic_moves/sample_compilers.py +372 -0
  157. package/mcp_server/semantic_moves/sound_design_moves.py +15 -15
  158. package/mcp_server/semantic_moves/tools.py +18 -17
  159. package/mcp_server/semantic_moves/transition_moves.py +16 -16
  160. package/mcp_server/server.py +51 -0
  161. package/mcp_server/services/__init__.py +1 -0
  162. package/mcp_server/services/motif_service.py +67 -0
  163. package/mcp_server/session_continuity/tracker.py +29 -1
  164. package/mcp_server/song_brain/builder.py +28 -1
  165. package/mcp_server/song_brain/models.py +4 -0
  166. package/mcp_server/song_brain/tools.py +20 -2
  167. package/mcp_server/sound_design/critics.py +89 -1
  168. package/mcp_server/splice_client/__init__.py +1 -0
  169. package/mcp_server/splice_client/client.py +347 -0
  170. package/mcp_server/splice_client/models.py +96 -0
  171. package/mcp_server/splice_client/protos/__init__.py +1 -0
  172. package/mcp_server/splice_client/protos/app_pb2.py +319 -0
  173. package/mcp_server/splice_client/protos/app_pb2.pyi +1153 -0
  174. package/mcp_server/splice_client/protos/app_pb2_grpc.py +1946 -0
  175. package/mcp_server/tools/arrangement.py +69 -0
  176. package/mcp_server/tools/automation.py +15 -2
  177. package/mcp_server/tools/devices.py +117 -6
  178. package/mcp_server/tools/notes.py +37 -4
  179. package/mcp_server/wonder_mode/diagnosis.py +5 -0
  180. package/mcp_server/wonder_mode/engine.py +85 -1
  181. package/mcp_server/wonder_mode/tools.py +6 -1
  182. package/package.json +12 -2
  183. package/remote_script/LivePilot/__init__.py +8 -1
  184. package/remote_script/LivePilot/arrangement.py +114 -0
  185. package/remote_script/LivePilot/browser.py +56 -1
  186. package/remote_script/LivePilot/devices.py +236 -6
  187. package/remote_script/LivePilot/mixing.py +8 -3
  188. package/remote_script/LivePilot/server.py +5 -1
  189. package/remote_script/LivePilot/transport.py +3 -0
  190. package/remote_script/LivePilot/version_detect.py +78 -0
  191. package/scripts/sync_metadata.py +132 -0
@@ -0,0 +1,159 @@
1
+ id: roar
2
+ name: Roar
3
+ sonic_description: >
4
+ Multi-stage distortion and saturation processor with parallel routing options introduced
5
+ in Live 12. Features multiple distortion algorithms that can be chained or run in parallel,
6
+ offering everything from subtle warming to extreme textural destruction with sophisticated
7
+ routing and feedback options.
8
+ effect_type: distortion
9
+ character_tags: [aggressive, textural, parallel, multi_stage, destructive]
10
+ use_cases: [aggressive_distortion, parallel_saturation, textural_destruction, creative_sound_design, warm_parallel]
11
+ genre_affinity:
12
+ primary: [industrial, electronic, experimental, techno]
13
+ secondary: [rock, hip_hop, sound_design]
14
+ complexity: advanced
15
+ signal_type: audio
16
+ introduced_in: "12.0"
17
+
18
+ key_parameters:
19
+ - name: "Drive"
20
+ description: "Primary distortion drive amount"
21
+ range: [0.0, 100.0]
22
+ unit: "%"
23
+ type: float
24
+ sweet_spots:
25
+ subtle: 15.0
26
+ moderate: 40.0
27
+ heavy: 70.0
28
+ extreme: 100.0
29
+
30
+ - name: "Routing"
31
+ description: "Signal flow between distortion stages — serial, parallel, or feedback"
32
+ range: ["Serial", "Parallel", "Feedback"]
33
+ type: enum
34
+ sweet_spots:
35
+ stacked: "Serial"
36
+ blended: "Parallel"
37
+ chaotic: "Feedback"
38
+
39
+ - name: "Stage 1 Type"
40
+ description: "Distortion algorithm for the first stage"
41
+ range: ["Saturate", "Fold", "Clip", "Squeeze", "Erode"]
42
+ type: enum
43
+ sweet_spots:
44
+ warm: "Saturate"
45
+ complex: "Fold"
46
+ hard: "Clip"
47
+
48
+ - name: "Stage 2 Type"
49
+ description: "Distortion algorithm for the second stage"
50
+ range: ["Saturate", "Fold", "Clip", "Squeeze", "Erode"]
51
+ type: enum
52
+ sweet_spots:
53
+ complement: "Fold"
54
+ texture: "Erode"
55
+
56
+ - name: "Tone"
57
+ description: "Brightness/darkness control for the overall distortion"
58
+ range: [0.0, 100.0]
59
+ unit: "%"
60
+ type: float
61
+ sweet_spots:
62
+ dark: 20.0
63
+ neutral: 50.0
64
+ bright: 80.0
65
+
66
+ - name: "Feedback"
67
+ description: "Internal feedback amount — creates self-oscillation at high values"
68
+ range: [0.0, 100.0]
69
+ unit: "%"
70
+ type: float
71
+ sweet_spots:
72
+ off: 0.0
73
+ subtle: 20.0
74
+ chaotic: 60.0
75
+ screaming: 90.0
76
+
77
+ - name: "Comp"
78
+ description: "Built-in compression before or after distortion"
79
+ range: [0.0, 100.0]
80
+ unit: "%"
81
+ type: float
82
+ sweet_spots:
83
+ off: 0.0
84
+ gentle: 30.0
85
+ heavy: 70.0
86
+
87
+ - name: "Body"
88
+ description: "Low-frequency emphasis — adds weight to the distortion"
89
+ range: [0.0, 100.0]
90
+ unit: "%"
91
+ type: float
92
+ sweet_spots:
93
+ thin: 0.0
94
+ warm: 40.0
95
+ heavy: 70.0
96
+
97
+ - name: "Dry/Wet"
98
+ description: "Mix between clean and distorted signal"
99
+ range: [0.0, 100.0]
100
+ unit: "%"
101
+ type: float
102
+ sweet_spots:
103
+ parallel_subtle: 30.0
104
+ blend: 50.0
105
+ full: 100.0
106
+
107
+ pairs_well_with:
108
+ - device: "EQ Eight"
109
+ reason: "Surgical frequency control before and after multi-stage distortion"
110
+ - device: "Compressor"
111
+ reason: "Tame dynamics after aggressive distortion"
112
+ - device: "Reverb"
113
+ reason: "Space and depth after textural distortion for soundscape design"
114
+ - device: "Auto Filter"
115
+ reason: "Dynamic filtering on the distorted output for movement"
116
+
117
+ starter_recipes:
118
+ - name: "Aggressive Parallel Distortion"
119
+ description: "Hard-clipped distortion blended with clean signal for impact without mush"
120
+ genre: electronic
121
+ params:
122
+ Drive: 70.0
123
+ Routing: "Parallel"
124
+ "Stage 1 Type": "Clip"
125
+ "Stage 2 Type": "Fold"
126
+ Tone: 55.0
127
+ "Dry/Wet": 45.0
128
+
129
+ - name: "Textural Destruction"
130
+ description: "Extreme distortion with feedback for industrial textures"
131
+ genre: industrial
132
+ params:
133
+ Drive: 85.0
134
+ Routing: "Feedback"
135
+ "Stage 1 Type": "Fold"
136
+ "Stage 2 Type": "Erode"
137
+ Feedback: 50.0
138
+ Tone: 40.0
139
+ "Dry/Wet": 80.0
140
+
141
+ - name: "Warm Parallel Saturation"
142
+ description: "Subtle multi-stage warmth for bus or master processing"
143
+ genre: all
144
+ params:
145
+ Drive: 25.0
146
+ Routing: "Parallel"
147
+ "Stage 1 Type": "Saturate"
148
+ "Stage 2 Type": "Saturate"
149
+ Body: 40.0
150
+ Comp: 30.0
151
+ "Dry/Wet": 35.0
152
+
153
+ gotchas:
154
+ - "Feedback routing can self-oscillate unpredictably — start with low Feedback values"
155
+ - "Multiple stages compound the distortion — Drive at 50% with two stages is much heavier than a single stage at 50%"
156
+ - "Different stage type combinations create very different results — experiment methodically"
157
+ - "The built-in Comp interacts with the distortion character — try pre and post positions"
158
+ - "Body adds sub content that can overpower monitors — check on full-range systems"
159
+ - "New in Live 12 — no equivalent in earlier versions"
@@ -0,0 +1,146 @@
1
+ id: saturator
2
+ name: Saturator
3
+ sonic_description: >
4
+ Versatile waveshaping saturation with six curve types ranging from warm analog clipping
5
+ to aggressive digital distortion and wavefold synthesis. Adds harmonics, warmth, and
6
+ edge to any source with precise control over the distortion character.
7
+ effect_type: distortion
8
+ character_tags: [warm, harmonics, analog, versatile, colorful]
9
+ use_cases: [warmth, harmonic_saturation, bass_grit, subtle_drive, aggressive_distortion, tape_emulation]
10
+ genre_affinity:
11
+ primary: [all]
12
+ secondary: []
13
+ complexity: beginner
14
+ signal_type: audio
15
+ introduced_in: "1.0"
16
+
17
+ key_parameters:
18
+ - name: "Drive"
19
+ description: "Amount of saturation applied — higher values = more harmonics and distortion"
20
+ range: [-inf, 24.0]
21
+ unit: dB
22
+ type: float
23
+ sweet_spots:
24
+ subtle: 3.0
25
+ warm: 8.0
26
+ driven: 15.0
27
+ extreme: 24.0
28
+
29
+ - name: "Type"
30
+ description: "Waveshaping curve — defines the character of the distortion"
31
+ range: ["Analog Clip", "Soft Sine", "Medium Curve", "Hard Curve", "Sinoid Fold", "Digital Clip"]
32
+ type: enum
33
+ sweet_spots:
34
+ tape_warmth: "Analog Clip"
35
+ gentle: "Soft Sine"
36
+ moderate: "Medium Curve"
37
+ aggressive: "Hard Curve"
38
+ folding: "Sinoid Fold"
39
+ harsh: "Digital Clip"
40
+
41
+ - name: "Color"
42
+ description: "Pre-saturation tone shaping — adds brightness before the waveshaper"
43
+ range: [0.0, 100.0]
44
+ unit: "%"
45
+ type: float
46
+ sweet_spots:
47
+ dark: 0.0
48
+ neutral: 50.0
49
+ bright: 80.0
50
+
51
+ - name: "Base"
52
+ description: "Pre-saturation low-frequency boost — adds bass weight before clipping"
53
+ range: [0.0, 100.0]
54
+ unit: "%"
55
+ type: float
56
+ sweet_spots:
57
+ flat: 0.0
58
+ warm: 30.0
59
+ fat: 60.0
60
+
61
+ - name: "Output"
62
+ description: "Output level for gain compensation after saturation"
63
+ range: [-inf, 0.0]
64
+ unit: dB
65
+ type: float
66
+ sweet_spots:
67
+ compensate: -6.0
68
+ unity: 0.0
69
+
70
+ - name: "Dry/Wet"
71
+ description: "Parallel blend — mix saturated and clean signal"
72
+ range: [0.0, 100.0]
73
+ unit: "%"
74
+ type: float
75
+ sweet_spots:
76
+ full: 100.0
77
+ parallel: 50.0
78
+ subtle_blend: 30.0
79
+
80
+ - name: "Soft Clip"
81
+ description: "Additional soft clipping on the output for rounded peaks"
82
+ type: toggle
83
+ range: [0, 1]
84
+ sweet_spots:
85
+ off: 0
86
+ on: 1
87
+
88
+ pairs_well_with:
89
+ - device: "EQ Eight"
90
+ reason: "Shape frequency content before and after saturation"
91
+ - device: "Compressor"
92
+ reason: "Compress before saturating for more even harmonic generation"
93
+ - device: "Utility"
94
+ reason: "Precise level control after saturation"
95
+ - device: "Auto Filter"
96
+ reason: "Filter after saturation to control harsh harmonics"
97
+
98
+ starter_recipes:
99
+ - name: "Warm Analog Saturation"
100
+ description: "Subtle tape-like warmth for any source"
101
+ genre: all
102
+ params:
103
+ Drive: 5.0
104
+ Type: "Analog Clip"
105
+ Color: 40.0
106
+ Output: -3.0
107
+ "Dry/Wet": 100.0
108
+
109
+ - name: "Aggressive Digital Clip"
110
+ description: "Hard, edgy distortion for industrial or aggressive sounds"
111
+ genre: industrial
112
+ params:
113
+ Drive: 18.0
114
+ Type: "Digital Clip"
115
+ Color: 60.0
116
+ Output: -8.0
117
+ "Dry/Wet": 100.0
118
+
119
+ - name: "Subtle Harmonics"
120
+ description: "Gentle parallel saturation to add life without obvious distortion"
121
+ genre: all
122
+ params:
123
+ Drive: 10.0
124
+ Type: "Soft Sine"
125
+ Color: 50.0
126
+ Output: -4.0
127
+ "Dry/Wet": 40.0
128
+
129
+ - name: "Bass Grit"
130
+ description: "Add upper harmonics to bass for speaker presence"
131
+ genre: electronic
132
+ params:
133
+ Drive: 12.0
134
+ Type: "Medium Curve"
135
+ Base: 40.0
136
+ Color: 30.0
137
+ Output: -5.0
138
+ "Dry/Wet": 60.0
139
+
140
+ gotchas:
141
+ - "Soft Sine is the most transparent curve type — start here for mixing contexts"
142
+ - "Sinoid Fold creates wavefold distortion — extreme harmonics at high Drive values"
143
+ - "Digital Clip is harsh and unforgiving — use intentionally for industrial or lo-fi sounds"
144
+ - "Color boosts high frequencies before saturation — can create harsh artifacts at high values"
145
+ - "Always compensate output level when adding Drive — saturation increases perceived loudness"
146
+ - "Dry/Wet is key for parallel saturation — 30-50% often sounds better than 100%"
@@ -0,0 +1,154 @@
1
+ id: shifter
2
+ name: Shifter
3
+ sonic_description: >
4
+ Pitch shifter, frequency shifter, and ring modulator in one device. Pitch Shift mode
5
+ transposes in semitones (harmonic). Frequency Shift mode shifts in Hz (inharmonic,
6
+ metallic). Ring Mod mode multiplies the input with an oscillator for bell-like,
7
+ metallic timbres. Renamed from Frequency Shifter in Live 12.
8
+ effect_type: modulation
9
+ character_tags: [metallic, inharmonic, creative, otherworldly, experimental]
10
+ use_cases: [pitch_shifting, ring_modulation, metallic_textures, detuning, frequency_shifting]
11
+ genre_affinity:
12
+ primary: [experimental, electronic, sound_design]
13
+ secondary: [ambient, idm, industrial]
14
+ complexity: intermediate
15
+ signal_type: audio
16
+ introduced_in: "8.0"
17
+
18
+ key_parameters:
19
+ - name: "Mode"
20
+ description: "Processing mode — Shift (pitch), Ring (ring mod), or Freq Shift (Hz-based)"
21
+ range: ["Shift", "Ring", "Freq Shift"]
22
+ type: enum
23
+ sweet_spots:
24
+ pitch: "Shift"
25
+ metallic: "Ring"
26
+ inharmonic: "Freq Shift"
27
+
28
+ - name: "Coarse"
29
+ description: "Coarse pitch shift in semitones (Shift mode)"
30
+ range: [-48, 48]
31
+ unit: st
32
+ type: int
33
+ sweet_spots:
34
+ octave_down: -12
35
+ fifth: 7
36
+ octave_up: 12
37
+
38
+ - name: "Fine"
39
+ description: "Fine pitch shift in cents (Shift mode)"
40
+ range: [-100, 100]
41
+ unit: cents
42
+ type: int
43
+ sweet_spots:
44
+ subtle_detune: -10
45
+ chorus_like: 7
46
+ quarter_tone: 50
47
+
48
+ - name: "Frequency"
49
+ description: "Shift amount in Hz (Freq Shift mode) or ring mod frequency (Ring mode)"
50
+ range: [-5000.0, 5000.0]
51
+ unit: Hz
52
+ type: float
53
+ sweet_spots:
54
+ subtle_shift: 2.0
55
+ metallic: 200.0
56
+ extreme: 1000.0
57
+
58
+ - name: "Ring Mod Freq"
59
+ description: "Ring modulator oscillator frequency (Ring mode)"
60
+ range: [0.1, 5000.0]
61
+ unit: Hz
62
+ type: float
63
+ sweet_spots:
64
+ tremolo: 5.0
65
+ metallic: 200.0
66
+ bell: 800.0
67
+ harsh: 2000.0
68
+
69
+ - name: "Drive"
70
+ description: "Input gain before processing"
71
+ range: [0.0, 100.0]
72
+ unit: "%"
73
+ type: float
74
+ sweet_spots:
75
+ clean: 0.0
76
+ moderate: 30.0
77
+ hot: 60.0
78
+
79
+ - name: "Feedback"
80
+ description: "Feeds shifted signal back into the input for cascading pitch effects"
81
+ range: [0.0, 100.0]
82
+ unit: "%"
83
+ type: float
84
+ sweet_spots:
85
+ off: 0.0
86
+ subtle: 20.0
87
+ shimmering: 50.0
88
+ runaway: 80.0
89
+
90
+ - name: "Dry/Wet"
91
+ description: "Mix between dry and shifted signal"
92
+ range: [0.0, 100.0]
93
+ unit: "%"
94
+ type: float
95
+ sweet_spots:
96
+ subtle: 15.0
97
+ blend: 35.0
98
+ heavy: 60.0
99
+ full: 100.0
100
+
101
+ pairs_well_with:
102
+ - device: "Reverb"
103
+ reason: "Reverb on shifted signal creates ethereal, otherworldly spaces"
104
+ - device: "Delay"
105
+ reason: "Delay + pitch shift = shimmer effect"
106
+ - device: "EQ Eight"
107
+ reason: "Tame harsh harmonics from ring mod or frequency shifting"
108
+ - device: "Auto Filter"
109
+ reason: "Filter the metallic artifacts for controlled texture"
110
+
111
+ starter_recipes:
112
+ - name: "Octave Up Shimmer"
113
+ description: "Pitch shift up one octave blended with reverb for shimmer"
114
+ genre: ambient
115
+ params:
116
+ Mode: "Shift"
117
+ Coarse: 12
118
+ Fine: 0
119
+ Feedback: 30.0
120
+ "Dry/Wet": 25.0
121
+
122
+ - name: "Ring Mod Metallic"
123
+ description: "Classic ring modulation for metallic, bell-like textures"
124
+ genre: experimental
125
+ params:
126
+ Mode: "Ring"
127
+ "Ring Mod Freq": 300.0
128
+ Drive: 20.0
129
+ "Dry/Wet": 50.0
130
+
131
+ - name: "Subtle Detune"
132
+ description: "Gentle pitch offset for subtle thickening and unease"
133
+ genre: all
134
+ params:
135
+ Mode: "Shift"
136
+ Coarse: 0
137
+ Fine: -8
138
+ "Dry/Wet": 30.0
139
+
140
+ - name: "Frequency Shift Movement"
141
+ description: "Small Hz-based shift for subtle inharmonic movement"
142
+ genre: ambient
143
+ params:
144
+ Mode: "Freq Shift"
145
+ Frequency: 3.0
146
+ "Dry/Wet": 40.0
147
+
148
+ gotchas:
149
+ - "Browser name is 'Shifter' (not 'Frequency Shifter') — use this with find_and_load_device"
150
+ - "Frequency Shift mode shifts in Hz, not semitones — even small values create inharmonic content"
151
+ - "Ring Mod at low frequencies (1-10 Hz) creates tremolo; at higher frequencies creates new sidebands"
152
+ - "Feedback with pitch shift creates ever-ascending or descending pitch cascades"
153
+ - "Frequency Shift at +/- 1-5 Hz creates subtle beating and movement without obvious pitch change"
154
+ - "Ring Mod produces sum and difference frequencies — the output contains frequencies not in the input"
@@ -0,0 +1,141 @@
1
+ id: spectral_resonator
2
+ name: Spectral Resonator
3
+ sonic_description: >
4
+ Spectral processing effect that creates pitched resonances from any input audio by
5
+ decomposing it into partials and resonating at specific frequencies. Can track MIDI input
6
+ for pitched resonance, creating tonal textures from noise, drums, or any sound source.
7
+ effect_type: spectral
8
+ character_tags: [ethereal, harmonic, tonal, creative, otherworldly]
9
+ use_cases: [harmonic_resonance, spectral_freeze, pitched_noise, creative_sound_design, drone]
10
+ genre_affinity:
11
+ primary: [ambient, experimental, electronic]
12
+ secondary: [sound_design, film_score, idm]
13
+ complexity: advanced
14
+ signal_type: audio
15
+ introduced_in: "11.0"
16
+ m4l_device: true
17
+
18
+ key_parameters:
19
+ - name: "Frequency"
20
+ description: "Base frequency of the resonance — sets the fundamental pitch"
21
+ range: [20.0, 20000.0]
22
+ unit: Hz
23
+ type: float
24
+ sweet_spots:
25
+ low_drone: 60.0
26
+ mid_tone: 440.0
27
+ high_shimmer: 2000.0
28
+
29
+ - name: "Decay"
30
+ description: "How long the resonances ring out"
31
+ range: [0.0, 100.0]
32
+ unit: "%"
33
+ type: float
34
+ sweet_spots:
35
+ short: 20.0
36
+ medium: 50.0
37
+ long_sustain: 80.0
38
+ infinite: 100.0
39
+
40
+ - name: "Mod Rate"
41
+ description: "Modulation speed of the spectral processing"
42
+ range: [0.01, 20.0]
43
+ unit: Hz
44
+ type: float
45
+ sweet_spots:
46
+ slow: 0.1
47
+ moderate: 1.0
48
+ fast: 5.0
49
+
50
+ - name: "Mod Amount"
51
+ description: "Depth of spectral modulation"
52
+ range: [0.0, 100.0]
53
+ unit: "%"
54
+ type: float
55
+ sweet_spots:
56
+ subtle: 15.0
57
+ moderate: 40.0
58
+ extreme: 80.0
59
+
60
+ - name: "Unison"
61
+ description: "Number of unison voices for thickness"
62
+ range: [1, 8]
63
+ type: int
64
+ sweet_spots:
65
+ single: 1
66
+ thick: 4
67
+ massive: 8
68
+
69
+ - name: "Stretch"
70
+ description: "Stretches the harmonic series — creates inharmonic or bell-like tones"
71
+ range: [0.0, 100.0]
72
+ unit: "%"
73
+ type: float
74
+ sweet_spots:
75
+ harmonic: 0.0
76
+ slight: 20.0
77
+ metallic: 50.0
78
+ bell: 80.0
79
+
80
+ - name: "MIDI Sidechain"
81
+ description: "Route MIDI to control the resonance pitch in real-time"
82
+ type: toggle
83
+ range: [0, 1]
84
+
85
+ - name: "Dry/Wet"
86
+ description: "Mix between dry input and resonated output"
87
+ range: [0.0, 100.0]
88
+ unit: "%"
89
+ type: float
90
+ sweet_spots:
91
+ subtle: 20.0
92
+ blend: 50.0
93
+ wet: 100.0
94
+
95
+ pairs_well_with:
96
+ - device: "Reverb"
97
+ reason: "Long reverb on resonated output creates vast, evolving spaces"
98
+ - device: "Delay"
99
+ reason: "Delays on resonances build complex, shimmering textures"
100
+ - device: "EQ Eight"
101
+ reason: "Shape the resonance frequency content to tame harsh harmonics"
102
+ - device: "Compressor"
103
+ reason: "Control dynamic surges from the resonance process"
104
+
105
+ starter_recipes:
106
+ - name: "Harmonic Resonance"
107
+ description: "Turn drums or noise into pitched, harmonic drones"
108
+ genre: ambient
109
+ params:
110
+ Frequency: 220.0
111
+ Decay: 70.0
112
+ Stretch: 0.0
113
+ "Dry/Wet": 80.0
114
+ Unison: 4
115
+
116
+ - name: "Spectral Freeze"
117
+ description: "Sustain and freeze the spectral content of any input"
118
+ genre: experimental
119
+ params:
120
+ Decay: 100.0
121
+ "Mod Amount": 10.0
122
+ "Mod Rate": 0.1
123
+ "Dry/Wet": 100.0
124
+
125
+ - name: "Pitched Noise Texture"
126
+ description: "Create tonal textures from white noise or percussive input"
127
+ genre: sound_design
128
+ params:
129
+ Frequency: 440.0
130
+ Decay: 50.0
131
+ Stretch: 30.0
132
+ Unison: 6
133
+ "Dry/Wet": 60.0
134
+
135
+ gotchas:
136
+ - "This is a Max for Live device — requires Suite or M4L license"
137
+ - "High Decay values with loud input can build up to very loud levels — watch output"
138
+ - "MIDI sidechain routing must be configured in Live's routing section, not just the device"
139
+ - "Stretch parameter makes the sound inharmonic — musical at low values, metallic at high values"
140
+ - "CPU-intensive with high Unison counts — use sparingly on weaker systems"
141
+ - "Works best with transient-rich or noisy input — sustained tones may not excite resonances effectively"