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,141 @@
1
+ id: grain_delay
2
+ name: Grain Delay
3
+ sonic_description: >
4
+ Granular delay that chops the delayed signal into tiny grains and can pitch-shift,
5
+ time-scatter, and randomize them. Creates shimmering, otherworldly textures from any
6
+ input — from subtle shimmer effects to extreme glitch scatter and frozen soundscapes.
7
+ effect_type: delay
8
+ character_tags: [granular, shimmering, textural, glitchy, ethereal]
9
+ use_cases: [shimmer, glitch, ambient_texture, pitch_delay, creative_effects]
10
+ genre_affinity:
11
+ primary: [ambient, experimental, electronic]
12
+ secondary: [shoegaze, post_rock, idm, sound_design]
13
+ complexity: intermediate
14
+ signal_type: audio
15
+ introduced_in: "1.0"
16
+
17
+ key_parameters:
18
+ - name: "Frequency"
19
+ description: "Grain rate — how many grains per second are generated"
20
+ range: [1.0, 150.0]
21
+ unit: Hz
22
+ type: float
23
+ sweet_spots:
24
+ slow_grains: 10.0
25
+ moderate: 40.0
26
+ fast_smooth: 100.0
27
+
28
+ - name: "Pitch"
29
+ description: "Pitch transposition of the grains in semitones"
30
+ range: [-48, 48]
31
+ unit: st
32
+ type: int
33
+ sweet_spots:
34
+ octave_down: -12
35
+ fifth_up: 7
36
+ octave_up: 12
37
+ two_octaves_up: 24
38
+
39
+ - name: "Spray"
40
+ description: "Randomizes grain playback position — scatters grains in time"
41
+ range: [0.0, 500.0]
42
+ unit: ms
43
+ type: float
44
+ sweet_spots:
45
+ tight: 0.0
46
+ subtle: 10.0
47
+ scattered: 50.0
48
+ extreme: 200.0
49
+
50
+ - name: "Random Pitch"
51
+ description: "Randomizes the pitch of individual grains"
52
+ range: [0.0, 100.0]
53
+ unit: "%"
54
+ type: float
55
+ sweet_spots:
56
+ off: 0.0
57
+ subtle: 10.0
58
+ wild: 50.0
59
+
60
+ - name: "Feedback"
61
+ description: "Amount of granulated signal fed back for layered textures"
62
+ range: [0.0, 100.0]
63
+ unit: "%"
64
+ type: float
65
+ sweet_spots:
66
+ single: 0.0
67
+ moderate: 40.0
68
+ dense: 70.0
69
+ runaway: 95.0
70
+
71
+ - name: "Delay Time"
72
+ description: "Base delay time before granulation"
73
+ range: [1.0, 1000.0]
74
+ unit: ms
75
+ type: float
76
+ sweet_spots:
77
+ short: 50.0
78
+ moderate: 200.0
79
+ long: 500.0
80
+
81
+ - name: "Dry/Wet"
82
+ description: "Mix between dry and granulated signal"
83
+ range: [0.0, 100.0]
84
+ unit: "%"
85
+ type: float
86
+ sweet_spots:
87
+ subtle: 15.0
88
+ blend: 30.0
89
+ heavy: 50.0
90
+ return_track: 100.0
91
+
92
+ pairs_well_with:
93
+ - device: "Reverb"
94
+ reason: "Long reverb on granulated output creates vast, evolving textures"
95
+ - device: "Auto Filter"
96
+ reason: "Filter the granular output for tonal control"
97
+ - device: "Echo"
98
+ reason: "Layer conventional echoes with granular textures"
99
+ - device: "EQ Eight"
100
+ reason: "Tame harsh frequencies from pitch-shifted grains"
101
+
102
+ starter_recipes:
103
+ - name: "Shimmer"
104
+ description: "Ethereal octave-up granular delay for ambient guitar or pads"
105
+ genre: ambient
106
+ params:
107
+ Pitch: 12
108
+ Frequency: 80.0
109
+ Spray: 5.0
110
+ "Random Pitch": 5.0
111
+ Feedback: 45.0
112
+ "Dry/Wet": 25.0
113
+
114
+ - name: "Glitch Scatter"
115
+ description: "Chaotic, scattered grains for glitch and IDM textures"
116
+ genre: idm
117
+ params:
118
+ Pitch: 0
119
+ Frequency: 20.0
120
+ Spray: 150.0
121
+ "Random Pitch": 40.0
122
+ Feedback: 30.0
123
+ "Dry/Wet": 35.0
124
+
125
+ - name: "Frozen Texture"
126
+ description: "Dense, sustained granular cloud from any input"
127
+ genre: ambient
128
+ params:
129
+ Pitch: 7
130
+ Frequency: 100.0
131
+ Spray: 30.0
132
+ "Random Pitch": 15.0
133
+ Feedback: 80.0
134
+ "Dry/Wet": 40.0
135
+
136
+ gotchas:
137
+ - "High Feedback + Pitch shift creates ever-rising or falling pitch cascades — intentional but can overwhelm"
138
+ - "Spray at high values with slow Frequency creates sparse, unpredictable textures"
139
+ - "Pitch is in semitones, not cents — +12 = octave up, -12 = octave down"
140
+ - "Low Frequency values create rhythmic, audible grain pulses; high values sound smoother"
141
+ - "CPU usage increases with high Feedback and Frequency settings"
@@ -0,0 +1,160 @@
1
+ id: hybrid_reverb
2
+ name: Hybrid Reverb
3
+ sonic_description: >
4
+ Hybrid reverb combining convolution (impulse response) early reflections with an
5
+ algorithmic tail. Uses real-world IR recordings for authentic room character while the
6
+ algorithmic component provides flexible, adjustable decay. Best of both worlds — realism
7
+ plus tunability.
8
+ effect_type: reverb
9
+ character_tags: [realistic, lush, detailed, flexible, cinematic]
10
+ use_cases: [realistic_room, stadium_reverb, morphing_space, cinematic, vocal_reverb]
11
+ genre_affinity:
12
+ primary: [all]
13
+ secondary: []
14
+ complexity: intermediate
15
+ signal_type: audio
16
+ introduced_in: "11.0"
17
+
18
+ key_parameters:
19
+ - name: "IR Category"
20
+ description: "Category of impulse response — Real Spaces, Studios, Plates, Springs, etc."
21
+ type: enum
22
+ range: ["Real Spaces", "Studios", "Plates", "Springs", "Vintage", "Experimental"]
23
+ sweet_spots:
24
+ room: "Real Spaces"
25
+ plate: "Plates"
26
+ creative: "Experimental"
27
+
28
+ - name: "Blend"
29
+ description: "Balance between convolution (IR) and algorithmic reverb"
30
+ range: [0.0, 100.0]
31
+ unit: "%"
32
+ type: float
33
+ sweet_spots:
34
+ full_convolution: 0.0
35
+ balanced: 50.0
36
+ full_algorithmic: 100.0
37
+
38
+ - name: "Size"
39
+ description: "Size scaling of the convolution/algorithmic space"
40
+ range: [0.0, 500.0]
41
+ unit: "%"
42
+ type: float
43
+ sweet_spots:
44
+ small: 50.0
45
+ natural: 100.0
46
+ large: 200.0
47
+ huge: 400.0
48
+
49
+ - name: "Decay"
50
+ description: "Algorithmic tail decay time"
51
+ range: [0.2, 60.0]
52
+ unit: s
53
+ type: float
54
+ sweet_spots:
55
+ short: 1.0
56
+ medium: 2.5
57
+ long: 5.0
58
+ infinite: 60.0
59
+
60
+ - name: "Pre Delay"
61
+ description: "Delay before reverb onset"
62
+ range: [0.0, 500.0]
63
+ unit: ms
64
+ type: float
65
+ sweet_spots:
66
+ intimate: 0.0
67
+ vocal: 20.0
68
+ large: 50.0
69
+
70
+ - name: "Damping"
71
+ description: "High-frequency absorption in the algorithmic tail"
72
+ range: [0.0, 100.0]
73
+ unit: "%"
74
+ type: float
75
+ sweet_spots:
76
+ bright: 20.0
77
+ natural: 50.0
78
+ dark: 80.0
79
+
80
+ - name: "EQ Low"
81
+ description: "Low-frequency EQ on the reverb output"
82
+ range: [-15.0, 15.0]
83
+ unit: dB
84
+ type: float
85
+ sweet_spots:
86
+ cut: -6.0
87
+ flat: 0.0
88
+
89
+ - name: "EQ High"
90
+ description: "High-frequency EQ on the reverb output"
91
+ range: [-15.0, 15.0]
92
+ unit: dB
93
+ type: float
94
+ sweet_spots:
95
+ dark: -6.0
96
+ flat: 0.0
97
+ bright: 3.0
98
+
99
+ - name: "Dry/Wet"
100
+ description: "Mix between dry and reverb signal"
101
+ range: [0.0, 100.0]
102
+ unit: "%"
103
+ type: float
104
+ sweet_spots:
105
+ subtle: 15.0
106
+ moderate: 30.0
107
+ heavy: 50.0
108
+ return_track: 100.0
109
+
110
+ pairs_well_with:
111
+ - device: "EQ Eight"
112
+ reason: "Additional frequency shaping before or after the hybrid reverb"
113
+ - device: "Compressor"
114
+ reason: "Control reverb dynamics on a return track"
115
+ - device: "Delay"
116
+ reason: "Delay into Hybrid Reverb for depth and dimension"
117
+ - device: "Utility"
118
+ reason: "Stereo width control on the reverb output"
119
+
120
+ starter_recipes:
121
+ - name: "Realistic Room + Long Tail"
122
+ description: "Authentic room character fading into a smooth algorithmic tail"
123
+ genre: all
124
+ params:
125
+ Blend: 40.0
126
+ Size: 100.0
127
+ Decay: 2.5
128
+ "Pre Delay": 15.0
129
+ Damping: 50.0
130
+ "Dry/Wet": 25.0
131
+
132
+ - name: "Stadium Verb"
133
+ description: "Massive, wide reverb for big cinematic moments"
134
+ genre: cinematic
135
+ params:
136
+ Blend: 30.0
137
+ Size: 350.0
138
+ Decay: 5.0
139
+ "Pre Delay": 40.0
140
+ Damping: 40.0
141
+ "EQ Low": -3.0
142
+ "Dry/Wet": 35.0
143
+
144
+ - name: "Morphing Space"
145
+ description: "Automate Blend to morph from convolution room to algorithmic wash"
146
+ genre: ambient
147
+ params:
148
+ Blend: 50.0
149
+ Size: 200.0
150
+ Decay: 8.0
151
+ Damping: 60.0
152
+ "Dry/Wet": 40.0
153
+
154
+ gotchas:
155
+ - "Convolution IRs use memory — long IRs at high quality settings increase RAM usage"
156
+ - "Blend parameter is key — automate it for evolving room-to-hall transitions"
157
+ - "Size affects both convolution and algorithmic components"
158
+ - "The IR library is extensive — browse categories to find the right starting point"
159
+ - "More CPU-intensive than the stock Reverb — use on return tracks for efficiency"
160
+ - "Damping only affects the algorithmic tail, not the convolution early reflections"
@@ -0,0 +1,97 @@
1
+ id: limiter
2
+ name: Limiter
3
+ sonic_description: >
4
+ Brick-wall peak limiter that prevents audio from exceeding a ceiling level. Transparent
5
+ at gentle settings, it catches transient peaks without audible compression artifacts.
6
+ Essential for mastering and output protection.
7
+ effect_type: dynamics
8
+ character_tags: [transparent, protective, loud, clean]
9
+ use_cases: [mastering, output_protection, loudness, live_safety]
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: "Gain"
19
+ description: "Input gain before limiting — push into the limiter for loudness"
20
+ range: [0.0, 16.0]
21
+ unit: dB
22
+ type: float
23
+ sweet_spots:
24
+ safety: 0.0
25
+ subtle_loudness: 3.0
26
+ moderate: 6.0
27
+ loud: 10.0
28
+
29
+ - name: "Ceiling"
30
+ description: "Maximum output level — nothing passes above this"
31
+ range: [-inf, 0.0]
32
+ unit: dB
33
+ type: float
34
+ sweet_spots:
35
+ streaming: -1.0
36
+ mastering: -0.3
37
+ safe: -0.5
38
+
39
+ - name: "Release"
40
+ description: "How fast the limiter releases after clamping a peak"
41
+ range: [0.01, 1000.0]
42
+ unit: ms
43
+ type: float
44
+ sweet_spots:
45
+ fast: 1.0
46
+ auto: -1
47
+ slow: 100.0
48
+
49
+ - name: "Stereo Link"
50
+ description: "Whether limiting is applied to L/R together or independently"
51
+ type: toggle
52
+ range: [0, 1]
53
+ sweet_spots:
54
+ linked: 1
55
+ independent: 0
56
+
57
+ pairs_well_with:
58
+ - device: "EQ Eight"
59
+ reason: "Shape frequency balance before limiting to avoid low-end pumping"
60
+ - device: "Compressor"
61
+ reason: "Stage compression before limiting for transparent loudness"
62
+ - device: "Utility"
63
+ reason: "Set precise gain staging before the limiter"
64
+ - device: "Glue Compressor"
65
+ reason: "Bus compression before limiting gives more headroom"
66
+
67
+ starter_recipes:
68
+ - name: "Mastering Limiter"
69
+ description: "Transparent loudness maximizing for final output"
70
+ genre: all
71
+ params:
72
+ Gain: 4.0
73
+ Ceiling: -1.0
74
+ Release: -1
75
+
76
+ - name: "Safety Limiter"
77
+ description: "Output protection for live performance — catches unexpected peaks"
78
+ genre: all
79
+ params:
80
+ Gain: 0.0
81
+ Ceiling: -0.3
82
+ Release: 1.0
83
+
84
+ - name: "Loud Master"
85
+ description: "Aggressive loudness for competitive levels — use with care"
86
+ genre: pop
87
+ params:
88
+ Gain: 8.0
89
+ Ceiling: -1.0
90
+ Release: -1
91
+
92
+ gotchas:
93
+ - "More than 3-4 dB of gain reduction usually means you need compression before the limiter"
94
+ - "Ceiling of -1.0 dB is recommended for streaming platforms (Spotify, Apple Music) to avoid codec artifacts"
95
+ - "Fast release can cause audible distortion on bass-heavy material"
96
+ - "Pushing Gain too hard causes audible pumping and loss of dynamics — check with meters"
97
+ - "Always monitor in mono after limiting to catch phase issues"
@@ -0,0 +1,174 @@
1
+ id: multiband_dynamics
2
+ name: Multiband Dynamics
3
+ sonic_description: >
4
+ Three-band dynamics processor that splits audio into low, mid, and high frequency
5
+ bands with independent compression and expansion per band. Allows surgical frequency-specific
6
+ dynamics control without affecting other ranges — essential for mastering and de-essing.
7
+ effect_type: dynamics
8
+ character_tags: [surgical, precise, powerful, transparent]
9
+ use_cases: [mastering, de_essing, multiband_compression, frequency_specific_dynamics, bass_control]
10
+ genre_affinity:
11
+ primary: [all]
12
+ secondary: []
13
+ complexity: advanced
14
+ signal_type: audio
15
+ introduced_in: "8.0"
16
+
17
+ key_parameters:
18
+ - name: "Low Crossover"
19
+ description: "Frequency dividing Low and Mid bands"
20
+ range: [20.0, 20000.0]
21
+ unit: Hz
22
+ type: float
23
+ sweet_spots:
24
+ standard: 120.0
25
+ deep_bass_split: 80.0
26
+ wide_low: 200.0
27
+
28
+ - name: "High Crossover"
29
+ description: "Frequency dividing Mid and High bands"
30
+ range: [20.0, 20000.0]
31
+ unit: Hz
32
+ type: float
33
+ sweet_spots:
34
+ standard: 4500.0
35
+ sibilance_target: 6000.0
36
+ bright_split: 8000.0
37
+
38
+ - name: "Low Above Threshold"
39
+ description: "Compression threshold for the Low band"
40
+ range: [-inf, 0.0]
41
+ unit: dB
42
+ type: float
43
+ sweet_spots:
44
+ gentle: -15.0
45
+ moderate: -25.0
46
+
47
+ - name: "Low Above Ratio"
48
+ description: "Compression ratio for the Low band"
49
+ range: [1.0, inf]
50
+ type: float
51
+ sweet_spots:
52
+ gentle: 2.0
53
+ tight: 4.0
54
+
55
+ - name: "Mid Above Threshold"
56
+ description: "Compression threshold for the Mid band"
57
+ range: [-inf, 0.0]
58
+ unit: dB
59
+ type: float
60
+ sweet_spots:
61
+ gentle: -15.0
62
+ moderate: -20.0
63
+
64
+ - name: "Mid Above Ratio"
65
+ description: "Compression ratio for the Mid band"
66
+ range: [1.0, inf]
67
+ type: float
68
+ sweet_spots:
69
+ gentle: 2.0
70
+ moderate: 3.0
71
+
72
+ - name: "High Above Threshold"
73
+ description: "Compression threshold for the High band"
74
+ range: [-inf, 0.0]
75
+ unit: dB
76
+ type: float
77
+ sweet_spots:
78
+ gentle: -15.0
79
+ de_ess: -25.0
80
+
81
+ - name: "High Above Ratio"
82
+ description: "Compression ratio for the High band"
83
+ range: [1.0, inf]
84
+ type: float
85
+ sweet_spots:
86
+ gentle: 2.0
87
+ de_ess: 4.0
88
+
89
+ - name: "Low Below Threshold"
90
+ description: "Expansion threshold for the Low band — expands/gates below this level"
91
+ range: [-inf, 0.0]
92
+ unit: dB
93
+ type: float
94
+ sweet_spots:
95
+ noise_gate: -40.0
96
+
97
+ - name: "Low Attack"
98
+ description: "Attack time for Low band dynamics"
99
+ range: [0.01, 1000.0]
100
+ unit: ms
101
+ type: float
102
+ sweet_spots:
103
+ fast: 1.0
104
+ slow: 30.0
105
+
106
+ - name: "Low Release"
107
+ description: "Release time for Low band dynamics"
108
+ range: [1.0, 3000.0]
109
+ unit: ms
110
+ type: float
111
+ sweet_spots:
112
+ fast: 50.0
113
+ slow: 200.0
114
+
115
+ - name: "Output Gain"
116
+ description: "Per-band output gain for rebalancing after processing"
117
+ range: [-inf, 12.0]
118
+ unit: dB
119
+ type: float
120
+ sweet_spots:
121
+ unity: 0.0
122
+
123
+ pairs_well_with:
124
+ - device: "EQ Eight"
125
+ reason: "Use before for broad EQ moves, after for fine tonal adjustments"
126
+ - device: "Limiter"
127
+ reason: "Final peak protection after multiband processing"
128
+ - device: "Compressor"
129
+ reason: "Gentle broadband compression before or after for overall dynamics"
130
+ - device: "Utility"
131
+ reason: "Level matching and mono-bass after multiband processing"
132
+
133
+ starter_recipes:
134
+ - name: "Multiband Mastering"
135
+ description: "Gentle multiband compression for a balanced, controlled master"
136
+ genre: all
137
+ params:
138
+ "Low Crossover": 120.0
139
+ "High Crossover": 4500.0
140
+ "Low Above Threshold": -18.0
141
+ "Low Above Ratio": 2.0
142
+ "Mid Above Threshold": -15.0
143
+ "Mid Above Ratio": 2.0
144
+ "High Above Threshold": -18.0
145
+ "High Above Ratio": 2.0
146
+
147
+ - name: "De-Esser"
148
+ description: "Tame sibilance by compressing only the high frequencies"
149
+ genre: all
150
+ params:
151
+ "High Crossover": 6000.0
152
+ "High Above Threshold": -25.0
153
+ "High Above Ratio": 4.0
154
+ "Low Above Threshold": 0.0
155
+ "Mid Above Threshold": 0.0
156
+
157
+ - name: "Bass-Only Compression"
158
+ description: "Tighten only the low end without affecting mids and highs"
159
+ genre: electronic
160
+ params:
161
+ "Low Crossover": 150.0
162
+ "Low Above Threshold": -20.0
163
+ "Low Above Ratio": 3.0
164
+ "Low Attack": 5.0
165
+ "Low Release": 100.0
166
+ "Mid Above Threshold": 0.0
167
+ "High Above Threshold": 0.0
168
+
169
+ gotchas:
170
+ - "Each band has BOTH compression (Above) and expansion (Below) — set unused thresholds to 0 dB (Above) or -inf (Below)"
171
+ - "Crossover frequencies cause phase shifts — avoid narrow bands unless necessary"
172
+ - "Easy to over-process — use the solo buttons to listen to each band individually"
173
+ - "For de-essing, solo the High band and adjust crossover until you isolate the sibilance"
174
+ - "Heavy processing on all three bands simultaneously can sound unnatural — less is more"
@@ -0,0 +1,119 @@
1
+ id: overdrive
2
+ name: Overdrive
3
+ sonic_description: >
4
+ Amp-style overdrive distortion that emulates the warm breakup of a tube amplifier
5
+ being pushed into clipping. More focused and characterful than Saturator, with a Tone
6
+ control that shapes the brightness of the distortion and a Dynamics parameter that
7
+ preserves or flattens the dynamic range.
8
+ effect_type: distortion
9
+ character_tags: [warm, crunchy, amp_like, musical, dynamic]
10
+ use_cases: [guitar_crunch, synth_warmth, bass_grit, lo_fi_character, subtle_edge]
11
+ genre_affinity:
12
+ primary: [rock, indie, blues]
13
+ secondary: [electronic, lo_fi, pop]
14
+ complexity: beginner
15
+ signal_type: audio
16
+ introduced_in: "1.0"
17
+
18
+ key_parameters:
19
+ - name: "Drive"
20
+ description: "Amount of overdrive distortion"
21
+ range: [0.0, 100.0]
22
+ unit: "%"
23
+ type: float
24
+ sweet_spots:
25
+ subtle: 15.0
26
+ crunch: 40.0
27
+ heavy: 70.0
28
+ maxed: 100.0
29
+
30
+ - name: "Tone"
31
+ description: "Brightness of the overdrive — low values are darker, high values are brighter"
32
+ range: [0.0, 100.0]
33
+ unit: "%"
34
+ type: float
35
+ sweet_spots:
36
+ dark: 20.0
37
+ warm: 40.0
38
+ neutral: 50.0
39
+ bright: 75.0
40
+
41
+ - name: "Dynamics"
42
+ description: "Preserves or compresses dynamics — 0% = heavily compressed, 100% = fully dynamic"
43
+ range: [0.0, 100.0]
44
+ unit: "%"
45
+ type: float
46
+ sweet_spots:
47
+ compressed: 20.0
48
+ moderate: 50.0
49
+ dynamic: 80.0
50
+ full: 100.0
51
+
52
+ - name: "Bandwidth"
53
+ description: "Frequency range affected by the overdrive"
54
+ range: [0.0, 100.0]
55
+ unit: "%"
56
+ type: float
57
+ sweet_spots:
58
+ narrow: 20.0
59
+ moderate: 50.0
60
+ wide: 80.0
61
+ full: 100.0
62
+
63
+ - name: "Dry/Wet"
64
+ description: "Mix between clean and overdriven signal"
65
+ range: [0.0, 100.0]
66
+ unit: "%"
67
+ type: float
68
+ sweet_spots:
69
+ full: 100.0
70
+ parallel: 50.0
71
+ subtle: 30.0
72
+
73
+ pairs_well_with:
74
+ - device: "EQ Eight"
75
+ reason: "Shape tone before and after overdrive for precise tonal control"
76
+ - device: "Compressor"
77
+ reason: "Compress before for consistent overdrive, after for taming peaks"
78
+ - device: "Cabinet"
79
+ reason: "Speaker cabinet emulation after overdrive for realistic guitar tone"
80
+ - device: "Reverb"
81
+ reason: "Room reverb after overdrive for guitar-in-a-room feel"
82
+
83
+ starter_recipes:
84
+ - name: "Guitar Crunch"
85
+ description: "Classic rock crunch overdrive for guitar"
86
+ genre: rock
87
+ params:
88
+ Drive: 45.0
89
+ Tone: 55.0
90
+ Dynamics: 60.0
91
+ Bandwidth: 70.0
92
+ "Dry/Wet": 100.0
93
+
94
+ - name: "Synth Warmth"
95
+ description: "Subtle warmth and harmonics on synthesizers"
96
+ genre: electronic
97
+ params:
98
+ Drive: 20.0
99
+ Tone: 40.0
100
+ Dynamics: 70.0
101
+ Bandwidth: 60.0
102
+ "Dry/Wet": 60.0
103
+
104
+ - name: "Lo-Fi Character"
105
+ description: "Dark, compressed overdrive for lo-fi aesthetics"
106
+ genre: lo_fi
107
+ params:
108
+ Drive: 50.0
109
+ Tone: 25.0
110
+ Dynamics: 30.0
111
+ Bandwidth: 50.0
112
+ "Dry/Wet": 80.0
113
+
114
+ gotchas:
115
+ - "Dynamics at 0% means maximum compression — the overdrive output is very consistent but lifeless"
116
+ - "Bandwidth narrows the affected frequency range — use to target mids for guitar-like breakup"
117
+ - "Less versatile than Saturator for mixing saturation — more suited to creative distortion"
118
+ - "Tone control interacts with Drive — high Tone + high Drive can be very harsh"
119
+ - "No waveshaping curve selection like Saturator — the character is fixed (tube-style)"