livepilot 1.26.0 → 1.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/README.md +1 -1
- package/installer/codex.js +87 -9
- package/livepilot/.Codex-plugin/plugin.json +8 -0
- package/livepilot/.claude-plugin/plugin.json +8 -0
- package/livepilot/.mcp.json +8 -0
- package/livepilot/agents/livepilot-producer/AGENT.md +314 -0
- package/livepilot/commands/arrange.md +47 -0
- package/livepilot/commands/beat.md +81 -0
- package/livepilot/commands/evaluate.md +49 -0
- package/livepilot/commands/memory.md +22 -0
- package/livepilot/commands/mix.md +47 -0
- package/livepilot/commands/perform.md +42 -0
- package/livepilot/commands/session.md +13 -0
- package/livepilot/commands/sounddesign.md +58 -0
- package/livepilot/rubrics/default_preset_check.md +82 -0
- package/livepilot/rubrics/layer_accumulation.md +79 -0
- package/livepilot/rubrics/layer_precision.md +79 -0
- package/livepilot/rubrics/modulation_presence.md +63 -0
- package/livepilot/rubrics/sound_design_depth.md +40 -0
- package/livepilot/skills/livepilot-arrangement/SKILL.md +164 -0
- package/livepilot/skills/livepilot-composition-engine/SKILL.md +151 -0
- package/livepilot/skills/livepilot-composition-engine/references/form-patterns.md +97 -0
- package/livepilot/skills/livepilot-composition-engine/references/transition-archetypes.md +102 -0
- package/livepilot/skills/livepilot-core/SKILL.md +261 -0
- package/livepilot/skills/livepilot-core/references/ableton-workflow-patterns.md +831 -0
- package/livepilot/skills/livepilot-core/references/affordances/_schema.md +160 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/auto-filter.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/chorus-ensemble.yaml +91 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/compressor.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/convolution-reverb.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/corpus.yaml +84 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/drift.yaml +105 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/echo.yaml +108 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/eq-eight.yaml +95 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/glue-compressor.yaml +88 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/granulator-iii.yaml +104 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/hybrid-reverb.yaml +83 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/operator.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/ping-pong-delay.yaml +104 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/poli.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/saturator.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/shifter.yaml +77 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/simpler.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/utility.yaml +95 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/vinyl-distortion.yaml +92 -0
- package/livepilot/skills/livepilot-core/references/affordances/devices/wavetable.yaml +98 -0
- package/livepilot/skills/livepilot-core/references/artist-vocabularies.md +389 -0
- package/livepilot/skills/livepilot-core/references/automation-atlas.md +272 -0
- package/livepilot/skills/livepilot-core/references/concepts/_schema.md +158 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/akufen.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/aphex-twin.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/arca-sophie.yaml +131 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/autechre.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/basic-channel.yaml +140 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/basinski.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/boards-of-canada.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/burial.yaml +127 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/com-truise-tycho.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/daft-punk.yaml +117 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/dj-premier-rza.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/gas.yaml +134 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/hawtin.yaml +127 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/isolee-luomo.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/j-dilla.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/jeff-mills.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/johannsson-richter.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/madlib.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/moodymann-theo-parrish.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/oneohtrix-point-never.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/photek-source-direct.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/rashad-spinn-traxman.yaml +122 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/robert-henke.yaml +113 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/shackleton.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/skream-mala.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/stars-of-the-lid.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/tim-hecker.yaml +122 -0
- package/livepilot/skills/livepilot-core/references/concepts/artists/villalobos.yaml +135 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/ambient.yaml +137 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/boom_bap.yaml +124 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/deep-minimal.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/deep_house.yaml +130 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/detroit_techno.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/disco.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/downtempo.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/drone.yaml +133 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/drum-and-bass.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dub-techno.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dub.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/dubstep.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/experimental.yaml +136 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/footwork.yaml +119 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/hip-hop.yaml +132 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/house.yaml +126 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/hyperpop.yaml +128 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/idm.yaml +134 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/lo_fi.yaml +129 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/microhouse.yaml +138 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/minimal-techno.yaml +116 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/modern-classical.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/soul.yaml +125 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/synthwave.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/techno.yaml +123 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/trap.yaml +120 -0
- package/livepilot/skills/livepilot-core/references/concepts/genres/uk-garage.yaml +121 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/00-index.md +110 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/distortion-and-character.md +687 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/drums-and-percussion.md +753 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/dynamics-and-punch.md +525 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/eq-and-filtering.md +402 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/midi-tools.md +963 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/movement-and-modulation.md +874 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/space-and-depth.md +571 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/spectral-and-weird.md +714 -0
- package/livepilot/skills/livepilot-core/references/device-atlas/synths-native.md +953 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +34 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +204 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +173 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +211 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +188 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +162 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +229 -0
- package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +243 -0
- package/livepilot/skills/livepilot-core/references/genre-vocabularies.md +382 -0
- package/livepilot/skills/livepilot-core/references/m4l-devices.md +352 -0
- package/livepilot/skills/livepilot-core/references/memory-guide.md +178 -0
- package/livepilot/skills/livepilot-core/references/midi-recipes.md +402 -0
- package/livepilot/skills/livepilot-core/references/mixing-patterns.md +578 -0
- package/livepilot/skills/livepilot-core/references/overview.md +300 -0
- package/livepilot/skills/livepilot-core/references/pack-knowledge.md +319 -0
- package/livepilot/skills/livepilot-core/references/sample-manipulation.md +724 -0
- package/livepilot/skills/livepilot-core/references/sound-design-deep.md +140 -0
- package/livepilot/skills/livepilot-core/references/sound-design.md +393 -0
- package/livepilot/skills/livepilot-corpus-builder/SKILL.md +379 -0
- package/livepilot/skills/livepilot-creative-director/SKILL.md +455 -0
- package/livepilot/skills/livepilot-creative-director/references/anti-repetition-rules.md +214 -0
- package/livepilot/skills/livepilot-creative-director/references/creative-brief-template.md +222 -0
- package/livepilot/skills/livepilot-creative-director/references/hybrid-compilation.md +185 -0
- package/livepilot/skills/livepilot-creative-director/references/move-family-diversity-rule.md +258 -0
- package/livepilot/skills/livepilot-creative-director/references/phase-6-execution.md +409 -0
- package/livepilot/skills/livepilot-creative-director/references/the-four-move-rule.md +192 -0
- package/livepilot/skills/livepilot-devices/SKILL.md +213 -0
- package/livepilot/skills/livepilot-devices/references/load_browser_item-uri-grammar.md +82 -0
- package/livepilot/skills/livepilot-evaluation/SKILL.md +195 -0
- package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +176 -0
- package/livepilot/skills/livepilot-evaluation/references/evaluation-contracts.md +121 -0
- package/livepilot/skills/livepilot-evaluation/references/memory-promotion.md +110 -0
- package/livepilot/skills/livepilot-mix-engine/SKILL.md +136 -0
- package/livepilot/skills/livepilot-mix-engine/references/mix-critics.md +143 -0
- package/livepilot/skills/livepilot-mix-engine/references/mix-moves.md +105 -0
- package/livepilot/skills/livepilot-mixing/SKILL.md +157 -0
- package/livepilot/skills/livepilot-notes/SKILL.md +130 -0
- package/livepilot/skills/livepilot-performance-engine/SKILL.md +122 -0
- package/livepilot/skills/livepilot-performance-engine/references/performance-safety.md +98 -0
- package/livepilot/skills/livepilot-release/SKILL.md +151 -0
- package/livepilot/skills/livepilot-sample-engine/SKILL.md +117 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +87 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +51 -0
- package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +131 -0
- package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +225 -0
- package/livepilot/skills/livepilot-sound-design-engine/references/patch-model.md +119 -0
- package/livepilot/skills/livepilot-sound-design-engine/references/sound-design-critics.md +118 -0
- package/livepilot/skills/livepilot-wonder/SKILL.md +143 -0
- package/m4l_device/LivePilot_Analyzer.amxd +0 -0
- package/m4l_device/LivePilot_Elektron.amxd +0 -0
- package/m4l_device/LivePilot_Elektron.maxpat +758 -0
- package/m4l_device/livepilot_bridge.js +1 -1
- package/m4l_device/livepilot_elektron_bridge.js +82 -0
- package/mcp_server/__init__.py +1 -1
- package/mcp_server/composer/develop/apply.py +1 -1
- package/mcp_server/composer/full/apply.py +32 -6
- package/mcp_server/m4l_bridge.py +5 -0
- package/mcp_server/runtime/execution_router.py +6 -0
- package/mcp_server/runtime/mcp_dispatch.py +18 -0
- package/mcp_server/runtime/remote_commands.py +2 -0
- package/mcp_server/server.py +11 -7
- package/package.json +20 -5
- package/remote_script/LivePilot/__init__.py +1 -1
- package/remote_script/LivePilot/server.py +63 -2
- package/requirements.txt +3 -3
- package/server.json +3 -3
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
id: drift
|
|
2
|
+
name: Drift
|
|
3
|
+
type: instrument
|
|
4
|
+
category: synth
|
|
5
|
+
aliases:
|
|
6
|
+
- "drift"
|
|
7
|
+
atlas_search_query: "Drift"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- warm analog-style pad
|
|
11
|
+
- detuned chord stab
|
|
12
|
+
- synthwave lead
|
|
13
|
+
- Rhodes-adjacent electric-piano tones
|
|
14
|
+
- minimal-techno single-source evolution
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- warm pads with subtle detune
|
|
18
|
+
- dub-techno chord stabs (short release, filtered delay on send)
|
|
19
|
+
- synthwave detuned leads (reduced spread)
|
|
20
|
+
- sustained textural drones
|
|
21
|
+
- single-source filter-automation aesthetic
|
|
22
|
+
|
|
23
|
+
risky_for:
|
|
24
|
+
- aggressive acid lines (use Analog instead)
|
|
25
|
+
- FM-complex timbres (use Operator or Vector FM)
|
|
26
|
+
- granular textures (use Granulator III or Vector Grain)
|
|
27
|
+
- trap 808 replacement (use Bass instead)
|
|
28
|
+
|
|
29
|
+
subtle_ranges:
|
|
30
|
+
osc_detune: [0.0, 0.15] # 0-1 normalized in Drift's internal scale
|
|
31
|
+
filter_cutoff: [0.5, 0.75]
|
|
32
|
+
envelope_attack: [0.0, 0.1]
|
|
33
|
+
envelope_release: [0.1, 0.3]
|
|
34
|
+
lfo_amount: [0.0, 0.15]
|
|
35
|
+
moderate_ranges:
|
|
36
|
+
osc_detune: [0.15, 0.35]
|
|
37
|
+
filter_cutoff: [0.3, 0.6]
|
|
38
|
+
envelope_release: [0.3, 0.7]
|
|
39
|
+
lfo_amount: [0.15, 0.4]
|
|
40
|
+
aggressive_ranges:
|
|
41
|
+
osc_detune: [0.35, 0.7]
|
|
42
|
+
filter_cutoff: [0.1, 0.4]
|
|
43
|
+
envelope_release: [0.7, 1.0]
|
|
44
|
+
lfo_amount: [0.4, 0.8]
|
|
45
|
+
|
|
46
|
+
pairings:
|
|
47
|
+
- device: Chorus-Ensemble
|
|
48
|
+
order: after
|
|
49
|
+
purpose: thicken pads and synthwave leads
|
|
50
|
+
- device: Auto Filter
|
|
51
|
+
order: after
|
|
52
|
+
purpose: additional filter movement beyond Drift's internal filter
|
|
53
|
+
- device: Echo
|
|
54
|
+
order: parallel # via send
|
|
55
|
+
purpose: dub-chord stab tail
|
|
56
|
+
- device: Convolution Reverb
|
|
57
|
+
order: parallel # via send
|
|
58
|
+
purpose: hall reverb on pads
|
|
59
|
+
|
|
60
|
+
anti_pairings:
|
|
61
|
+
- "Heavy distortion (Saturator on drive) — Drift's warm character conflicts with aggressive saturation; use Analog for that sound"
|
|
62
|
+
- "Pitch Hack — Drift's internal pitch is clean; Pitch Hack compounds with oscillator character unpredictably"
|
|
63
|
+
|
|
64
|
+
remeasure:
|
|
65
|
+
- plugin_health # Drift is native but confirm load
|
|
66
|
+
- track_meters # Drift's default Volume is NOT -12dB (Simpler is); confirm
|
|
67
|
+
- spectral_balance
|
|
68
|
+
- stereo_width # detune widens
|
|
69
|
+
|
|
70
|
+
dimensional_impact:
|
|
71
|
+
structural: low
|
|
72
|
+
rhythmic: low
|
|
73
|
+
timbral: high
|
|
74
|
+
spatial: low-moderate # detune creates stereo width
|
|
75
|
+
|
|
76
|
+
appears_in_packets:
|
|
77
|
+
artists:
|
|
78
|
+
- basic-channel
|
|
79
|
+
- isolee-luomo
|
|
80
|
+
- com-truise-tycho
|
|
81
|
+
- jeff-mills
|
|
82
|
+
- boards-of-canada
|
|
83
|
+
genres:
|
|
84
|
+
- dub-techno
|
|
85
|
+
- minimal-techno
|
|
86
|
+
- microhouse
|
|
87
|
+
- house
|
|
88
|
+
- synthwave
|
|
89
|
+
- downtempo
|
|
90
|
+
- uk-garage
|
|
91
|
+
|
|
92
|
+
notes: |
|
|
93
|
+
Drift is the LivePilot answer for "warm, simple synth" — the first
|
|
94
|
+
device to reach for when the aesthetic calls for classic analog
|
|
95
|
+
character without the dedicated emulation (Analog = acid, Poli =
|
|
96
|
+
Juno, Drift = "none of the above, just warm").
|
|
97
|
+
|
|
98
|
+
Key signature techniques in atlas: "Neo-soul Rhodes-adjacent keys",
|
|
99
|
+
"Warm synthwave pad". See atlas `signature_techniques` for full
|
|
100
|
+
parameter recipes.
|
|
101
|
+
|
|
102
|
+
For dub-techno chord stab: short attack + short release + high
|
|
103
|
+
resonance + slight detune, then route to a send with Ping-Pong
|
|
104
|
+
Delay + Auto Filter + Convolution Reverb. The PATCH is minimal;
|
|
105
|
+
the SEND CHAIN carries the aesthetic.
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
id: echo
|
|
2
|
+
name: Echo
|
|
3
|
+
type: effect
|
|
4
|
+
category: delay
|
|
5
|
+
aliases:
|
|
6
|
+
- "echo"
|
|
7
|
+
- "ping-pong delay" # Echo can run in ping-pong mode
|
|
8
|
+
atlas_search_query: "Echo"
|
|
9
|
+
|
|
10
|
+
musical_roles:
|
|
11
|
+
- dub space
|
|
12
|
+
- rhythm shadow
|
|
13
|
+
- tail harvesting
|
|
14
|
+
- stereo widening via time-offset
|
|
15
|
+
- implied-groove creation (delayed hits complete the rhythm)
|
|
16
|
+
- "ping-pong delay (via Channel Mode = 1 — see note below)"
|
|
17
|
+
|
|
18
|
+
strong_for:
|
|
19
|
+
- widening sparse material (low-density drum or chord clips)
|
|
20
|
+
- implied groove without adding notes
|
|
21
|
+
- dub-techno chord-stab tails
|
|
22
|
+
- creating off-beat rhythmic accents
|
|
23
|
+
- vocal doubling with slapback
|
|
24
|
+
|
|
25
|
+
risky_for:
|
|
26
|
+
- dense high-hat patterns (Echo smears transients)
|
|
27
|
+
- muddy low-end sources (delayed sub-bass becomes undefined)
|
|
28
|
+
- already-percussion-heavy busses
|
|
29
|
+
- sources with their own strong reverb (double-spatial)
|
|
30
|
+
- kick drums (delayed kick kills groove)
|
|
31
|
+
|
|
32
|
+
subtle_ranges:
|
|
33
|
+
feedback: [0.15, 0.30]
|
|
34
|
+
time_L: [1/16, 1/8] # Ableton's sync-division
|
|
35
|
+
filter_freq: [400, 1200] # when using internal filter on return
|
|
36
|
+
moderate_ranges:
|
|
37
|
+
feedback: [0.35, 0.55]
|
|
38
|
+
time_L: [1/8, 1/4]
|
|
39
|
+
filter_freq: [200, 600]
|
|
40
|
+
aggressive_ranges:
|
|
41
|
+
feedback: [0.60, 0.85]
|
|
42
|
+
time_L: [1/4, 1/2]
|
|
43
|
+
filter_freq: [80, 350]
|
|
44
|
+
# Above 0.85 feedback → self-oscillation, usable but requires Limiter after
|
|
45
|
+
|
|
46
|
+
pairings:
|
|
47
|
+
- device: Auto Filter
|
|
48
|
+
order: before
|
|
49
|
+
purpose: dub sweeps — filter the input before it hits the delay
|
|
50
|
+
- device: Convolution Reverb
|
|
51
|
+
order: after
|
|
52
|
+
purpose: fog field — reverb the delayed tails for dub atmosphere
|
|
53
|
+
- device: Utility
|
|
54
|
+
order: before
|
|
55
|
+
purpose: mono-ize the input before stereo delay (cleaner dub-chord)
|
|
56
|
+
- device: Compressor
|
|
57
|
+
order: after
|
|
58
|
+
purpose: glue delayed repetitions when feedback is high
|
|
59
|
+
|
|
60
|
+
anti_pairings:
|
|
61
|
+
- Another Echo in series (use one Echo with higher feedback instead)
|
|
62
|
+
- Any transient shaper immediately before (Echo needs stable input)
|
|
63
|
+
|
|
64
|
+
remeasure:
|
|
65
|
+
- spectral_balance # tails often shift EQ
|
|
66
|
+
- low_headroom # feedback piles up level
|
|
67
|
+
- groove_motion # check that delay doesn't kill groove
|
|
68
|
+
- stereo_width # ping-pong mode widens
|
|
69
|
+
|
|
70
|
+
dimensional_impact:
|
|
71
|
+
structural: low
|
|
72
|
+
rhythmic: moderate # delayed hits add rhythmic texture
|
|
73
|
+
timbral: moderate # filter on return shapes tone
|
|
74
|
+
spatial: high # dominant consequence
|
|
75
|
+
|
|
76
|
+
appears_in_packets:
|
|
77
|
+
artists:
|
|
78
|
+
- basic-channel
|
|
79
|
+
- gas
|
|
80
|
+
- hawtin
|
|
81
|
+
- boards-of-canada
|
|
82
|
+
- skream-mala
|
|
83
|
+
genres:
|
|
84
|
+
- dub-techno
|
|
85
|
+
- deep-minimal
|
|
86
|
+
- minimal-techno
|
|
87
|
+
- dubstep
|
|
88
|
+
|
|
89
|
+
notes: |
|
|
90
|
+
Echo is THE dub-techno and dub-minimal workhorse. Typical deployment:
|
|
91
|
+
on a return track, with Auto Filter BEFORE the delay (not after —
|
|
92
|
+
filter the input, not the tail), and Convolution Reverb AFTER for
|
|
93
|
+
the fog field. Send sparingly (15–35% for subtle, 45–65% for
|
|
94
|
+
signature).
|
|
95
|
+
|
|
96
|
+
**Channel Mode parameter** (discrete enum, values 0–2, confirmed
|
|
97
|
+
against live device state v1.18.0 — value_string in set_device_parameter
|
|
98
|
+
response is the source of truth):
|
|
99
|
+
- 0 = Stereo (default) — left/right delay times can be independent
|
|
100
|
+
- 1 = Ping Pong — alternating L↔R bounce; this is the "Ping Pong Delay"
|
|
101
|
+
mode. No standalone Ping Pong Delay device exists in Live 12;
|
|
102
|
+
use Echo with Channel Mode = 1 instead. See
|
|
103
|
+
affordances/devices/ping-pong-delay.yaml for the mode-alias packet.
|
|
104
|
+
- 2 = Mid/Side — delay applied to mid/side rather than stereo L/R
|
|
105
|
+
|
|
106
|
+
Internal filter on return makes the tails "move" over time — this
|
|
107
|
+
is the "filtered delay return" technique that carries harmonic
|
|
108
|
+
content in Basic Channel / Rhythm & Sound.
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
id: eq_eight
|
|
2
|
+
name: EQ Eight
|
|
3
|
+
type: utility
|
|
4
|
+
category: equalizer
|
|
5
|
+
aliases:
|
|
6
|
+
- "eq eight"
|
|
7
|
+
- "eq 8"
|
|
8
|
+
atlas_search_query: "EQ Eight"
|
|
9
|
+
|
|
10
|
+
musical_roles:
|
|
11
|
+
- corrective EQ (cutting problem frequencies)
|
|
12
|
+
- tonal shaping (shelf / bell / pass filters)
|
|
13
|
+
- surgical notches (resonance removal)
|
|
14
|
+
- spectral tilt (adjusting overall brightness / darkness)
|
|
15
|
+
- dynamic-EQ via automation
|
|
16
|
+
|
|
17
|
+
strong_for:
|
|
18
|
+
- surgical notch cuts (high-Q narrow bell)
|
|
19
|
+
- low-shelf / high-shelf tilt for warmth / brightness
|
|
20
|
+
- high-pass filter to remove low-end rumble
|
|
21
|
+
- mid-cut to create space for vocals / leads
|
|
22
|
+
- dynamic spectral shaping via automation
|
|
23
|
+
|
|
24
|
+
risky_for:
|
|
25
|
+
- creative effect (EQ is subtractive shaping, not creative device — use Auto Filter for creative filter work)
|
|
26
|
+
- extreme cut/boost settings (>±12 dB — use multiple bands instead)
|
|
27
|
+
- transient shaping (EQ doesn't touch transients; use Compressor with attack)
|
|
28
|
+
- aggressive character (Saturator adds character, EQ just removes)
|
|
29
|
+
|
|
30
|
+
subtle_ranges:
|
|
31
|
+
gain_per_band: [-3, 3] # dB
|
|
32
|
+
q_factor: [0.5, 2.0]
|
|
33
|
+
cut_below: [20, 40] # high-pass at
|
|
34
|
+
cut_above: [15000, 20000] # low-pass at
|
|
35
|
+
moderate_ranges:
|
|
36
|
+
gain_per_band: [-6, 6]
|
|
37
|
+
q_factor: [2.0, 5.0]
|
|
38
|
+
cut_below: [40, 80]
|
|
39
|
+
cut_above: [10000, 15000]
|
|
40
|
+
aggressive_ranges:
|
|
41
|
+
gain_per_band: [-12, 12]
|
|
42
|
+
q_factor: [5.0, 18.0] # surgical notch
|
|
43
|
+
cut_below: [80, 250]
|
|
44
|
+
cut_above: [5000, 10000]
|
|
45
|
+
|
|
46
|
+
pairings:
|
|
47
|
+
- device: Compressor
|
|
48
|
+
order: after
|
|
49
|
+
purpose: de-essing pattern (EQ notch before compression)
|
|
50
|
+
- device: Saturator
|
|
51
|
+
order: after
|
|
52
|
+
purpose: EQ-first-then-saturate for warmth on shaped source
|
|
53
|
+
- device: Reverb / Convolution Reverb
|
|
54
|
+
order: after
|
|
55
|
+
purpose: high-pass the input BEFORE reverb to prevent mud
|
|
56
|
+
- device: Utility
|
|
57
|
+
order: either
|
|
58
|
+
purpose: utility is always compatible
|
|
59
|
+
|
|
60
|
+
anti_pairings:
|
|
61
|
+
- "Multiple EQ Eights in series for minor adjustments (use bands in one)"
|
|
62
|
+
- "Auto Filter replicating a simple low-pass (use EQ — cheaper CPU)"
|
|
63
|
+
|
|
64
|
+
remeasure:
|
|
65
|
+
- spectral_balance # the whole point
|
|
66
|
+
- track_meters # cuts/boosts change level
|
|
67
|
+
- master_spectrum
|
|
68
|
+
|
|
69
|
+
dimensional_impact:
|
|
70
|
+
structural: none
|
|
71
|
+
rhythmic: none
|
|
72
|
+
timbral: moderate # tone shaping affects timbre
|
|
73
|
+
spatial: none
|
|
74
|
+
|
|
75
|
+
appears_in_packets:
|
|
76
|
+
artists:
|
|
77
|
+
- basic-channel
|
|
78
|
+
- hawtin
|
|
79
|
+
- com-truise-tycho
|
|
80
|
+
# ... appears universally, but listed in packets where it's specifically named
|
|
81
|
+
genres:
|
|
82
|
+
- dub-techno
|
|
83
|
+
- modern-classical
|
|
84
|
+
- ambient
|
|
85
|
+
# ... also near-universal
|
|
86
|
+
|
|
87
|
+
notes: |
|
|
88
|
+
EQ Eight is plumbing for creative work. It's rarely THE move — it
|
|
89
|
+
supports creative moves by removing unwanted frequencies or adding
|
|
90
|
+
subtle tilt. A Phase-3 plan's dominant family should almost never
|
|
91
|
+
be an EQ Eight plan (that's a mix cleanup, not a creative move).
|
|
92
|
+
|
|
93
|
+
Per CLAUDE.md: always pair with read_value_string checks after
|
|
94
|
+
any parameter change — EQ Eight's gain parameter is actual dB,
|
|
95
|
+
frequency is actual Hz.
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
id: glue_compressor
|
|
2
|
+
name: Glue Compressor
|
|
3
|
+
type: effect
|
|
4
|
+
category: dynamics
|
|
5
|
+
aliases:
|
|
6
|
+
- "glue compressor"
|
|
7
|
+
- "glue"
|
|
8
|
+
atlas_search_query: "Glue Compressor"
|
|
9
|
+
|
|
10
|
+
musical_roles:
|
|
11
|
+
- bus glue (drum bus, master bus, group glue)
|
|
12
|
+
- SSL-style cohesion
|
|
13
|
+
- low-compression-count master buss dynamics
|
|
14
|
+
- rhythmic density via slight compression pumping
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- drum-bus glue (2:1 or 4:1, slow attack, moderate release)
|
|
18
|
+
- master-bus light compression (1.5:1, auto-release)
|
|
19
|
+
- group-bus cohesion (similar sounds through one compressor)
|
|
20
|
+
- cohesion-focused production (house, pop, modern-classical)
|
|
21
|
+
|
|
22
|
+
risky_for:
|
|
23
|
+
- individual-track dynamics (use Compressor instead — more control)
|
|
24
|
+
- sidechain pumping (use Compressor with Envelope Follower)
|
|
25
|
+
- aggressive transient shaping (Glue is smoother than Compressor)
|
|
26
|
+
- ambient / dub-techno / Gas-style aesthetics (avoids compression by design)
|
|
27
|
+
|
|
28
|
+
subtle_ranges:
|
|
29
|
+
threshold: [-4, -1]
|
|
30
|
+
ratio: [1.5, 2.0]
|
|
31
|
+
attack: [10, 30]
|
|
32
|
+
release: [100, 400]
|
|
33
|
+
gain_reduction: [1, 2]
|
|
34
|
+
moderate_ranges:
|
|
35
|
+
threshold: [-8, -4]
|
|
36
|
+
ratio: [2.0, 4.0]
|
|
37
|
+
attack: [3, 10]
|
|
38
|
+
release: [50, 100]
|
|
39
|
+
gain_reduction: [2, 4]
|
|
40
|
+
aggressive_ranges:
|
|
41
|
+
threshold: [-14, -8]
|
|
42
|
+
ratio: [4.0, 10.0]
|
|
43
|
+
attack: [0.1, 3]
|
|
44
|
+
release: [auto]
|
|
45
|
+
gain_reduction: [4, 8]
|
|
46
|
+
|
|
47
|
+
pairings:
|
|
48
|
+
- device: EQ Eight
|
|
49
|
+
order: after
|
|
50
|
+
purpose: post-glue tone shaping
|
|
51
|
+
- device: Saturator
|
|
52
|
+
order: before
|
|
53
|
+
purpose: saturation into glue for warmth
|
|
54
|
+
- device: Limiter
|
|
55
|
+
order: after # on master bus
|
|
56
|
+
purpose: final peak control after glue
|
|
57
|
+
|
|
58
|
+
anti_pairings:
|
|
59
|
+
- "Compressor on the same bus (pick one — Glue is a Compressor specialist)"
|
|
60
|
+
- "Aggressive sidechain via Glue (use Compressor for sidechain work)"
|
|
61
|
+
|
|
62
|
+
remeasure:
|
|
63
|
+
- track_meters
|
|
64
|
+
- spectral_balance
|
|
65
|
+
- low_headroom
|
|
66
|
+
- master_lufs # on master-bus application
|
|
67
|
+
|
|
68
|
+
dimensional_impact:
|
|
69
|
+
structural: none
|
|
70
|
+
rhythmic: low
|
|
71
|
+
timbral: low
|
|
72
|
+
spatial: none # dynamics, not spatial
|
|
73
|
+
|
|
74
|
+
appears_in_packets:
|
|
75
|
+
artists: []
|
|
76
|
+
genres:
|
|
77
|
+
- house
|
|
78
|
+
- drum-and-bass
|
|
79
|
+
|
|
80
|
+
notes: |
|
|
81
|
+
Glue Compressor is specialist: bus glue, not individual tracks.
|
|
82
|
+
For drum-bus glue, 2:1-4:1 with slow attack (10-20 ms) and moderate
|
|
83
|
+
release (100-200 ms) gives SSL-style cohesion without crushing
|
|
84
|
+
transients.
|
|
85
|
+
|
|
86
|
+
Genres that explicitly avoid compression (Basic Channel, Gas,
|
|
87
|
+
ambient) should AVOID Glue on master; instead, send minimal
|
|
88
|
+
volume + Utility + Saturator for gentle warmth.
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
id: granulator_iii
|
|
2
|
+
name: Granulator III
|
|
3
|
+
type: instrument
|
|
4
|
+
category: granular_synth
|
|
5
|
+
aliases:
|
|
6
|
+
- "granulator iii"
|
|
7
|
+
- "granulator 3"
|
|
8
|
+
- "granulator"
|
|
9
|
+
atlas_search_query: "Granulator III"
|
|
10
|
+
|
|
11
|
+
musical_roles:
|
|
12
|
+
- grain-cloud generator (Cloud mode)
|
|
13
|
+
- ambient-drone source from orchestral samples
|
|
14
|
+
- Gas-style crushed-orchestral textures
|
|
15
|
+
- Henke-style detailed granular design
|
|
16
|
+
- texture-bed creation from any source sample
|
|
17
|
+
|
|
18
|
+
strong_for:
|
|
19
|
+
- ambient / drone textures (Tim Hecker, Gas)
|
|
20
|
+
- transforming orchestral loops into drone (Gas aesthetic)
|
|
21
|
+
- long sustained textures from short source
|
|
22
|
+
- pitch-spread / detuned clouds
|
|
23
|
+
- slow-motion sustain
|
|
24
|
+
|
|
25
|
+
risky_for:
|
|
26
|
+
- rhythmic programming (grain cloud has no pulse)
|
|
27
|
+
- transient-critical sources (grains destroy transients)
|
|
28
|
+
- mixes that need source-recognizability
|
|
29
|
+
- tempo-synced work (grain rate works in time but feels timeless)
|
|
30
|
+
|
|
31
|
+
subtle_ranges:
|
|
32
|
+
grain_size: [50, 150] # ms — tight grain, source-recognizable
|
|
33
|
+
grain_density: [0.2, 0.5] # 0-1
|
|
34
|
+
pitch_spread: [0, 10] # cents
|
|
35
|
+
position_spread: [0, 0.1]
|
|
36
|
+
moderate_ranges:
|
|
37
|
+
grain_size: [150, 400]
|
|
38
|
+
grain_density: [0.5, 0.8]
|
|
39
|
+
pitch_spread: [10, 50]
|
|
40
|
+
position_spread: [0.1, 0.5]
|
|
41
|
+
aggressive_ranges:
|
|
42
|
+
grain_size: [400, 2000] # ms — true cloud, source-unrecognizable
|
|
43
|
+
grain_density: [0.8, 1.0]
|
|
44
|
+
pitch_spread: [50, 1200] # cents — up to an octave
|
|
45
|
+
position_spread: [0.5, 1.0]
|
|
46
|
+
|
|
47
|
+
pairings:
|
|
48
|
+
- device: Convolution Reverb
|
|
49
|
+
order: after
|
|
50
|
+
purpose: cathedral space for grain cloud
|
|
51
|
+
- device: Auto Filter
|
|
52
|
+
order: after
|
|
53
|
+
purpose: slow LFO sweep on grain cloud (Gas signature)
|
|
54
|
+
- device: Erosion
|
|
55
|
+
order: after
|
|
56
|
+
purpose: digital grit on grain cloud
|
|
57
|
+
- device: Saturator
|
|
58
|
+
order: after
|
|
59
|
+
purpose: harmonic saturation (Tim Hecker)
|
|
60
|
+
|
|
61
|
+
anti_pairings:
|
|
62
|
+
- "Vector Grain in same chain (redundant granular sources)"
|
|
63
|
+
- "Sharp transient shaper (transients are what grains destroy)"
|
|
64
|
+
|
|
65
|
+
remeasure:
|
|
66
|
+
- plugin_health
|
|
67
|
+
- spectral_balance # grain clouds have wide frequency content
|
|
68
|
+
- low_headroom
|
|
69
|
+
- stereo_width # position-spread widens
|
|
70
|
+
|
|
71
|
+
dimensional_impact:
|
|
72
|
+
structural: low
|
|
73
|
+
rhythmic: low
|
|
74
|
+
timbral: high
|
|
75
|
+
spatial: moderate
|
|
76
|
+
|
|
77
|
+
appears_in_packets:
|
|
78
|
+
artists:
|
|
79
|
+
- gas
|
|
80
|
+
- tim-hecker
|
|
81
|
+
- stars-of-the-lid
|
|
82
|
+
- basinski
|
|
83
|
+
- villalobos
|
|
84
|
+
- robert-henke
|
|
85
|
+
- shackleton
|
|
86
|
+
genres:
|
|
87
|
+
- ambient
|
|
88
|
+
- microhouse
|
|
89
|
+
- deep-minimal
|
|
90
|
+
- idm
|
|
91
|
+
- modern-classical
|
|
92
|
+
|
|
93
|
+
notes: |
|
|
94
|
+
Granulator III is the ambient / drone workhorse. Cloud mode with
|
|
95
|
+
200-500 ms grains is the Gas / Wolfgang Voigt canonical setting.
|
|
96
|
+
For Tim Hecker aesthetic: pitch-spread wide + saturation after.
|
|
97
|
+
|
|
98
|
+
Per atlas: "Granulator III Cloud mode" technique. Signature pair
|
|
99
|
+
with Convolution Reverb (cathedral IR) for ambient drone bed.
|
|
100
|
+
|
|
101
|
+
Henke's relationship to Granulator III is special — he made the
|
|
102
|
+
original. The Granulator III Cloud mode implementation reflects
|
|
103
|
+
his specific design choices. Reference packet/artist `robert-henke`
|
|
104
|
+
for technique-level parameter guidance.
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
id: hybrid_reverb
|
|
2
|
+
name: Hybrid Reverb
|
|
3
|
+
type: effect
|
|
4
|
+
category: reverb
|
|
5
|
+
aliases:
|
|
6
|
+
- "hybrid reverb"
|
|
7
|
+
atlas_search_query: "Hybrid Reverb"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- "modern versatile reverb (algorithmic + convolution hybrid)"
|
|
11
|
+
- default reverb when IR specificity isn't needed
|
|
12
|
+
- modular-room reverb with shape parameters
|
|
13
|
+
- transparent hall / plate / chamber emulation
|
|
14
|
+
|
|
15
|
+
strong_for:
|
|
16
|
+
- general-purpose reverb for house, techno, pop production
|
|
17
|
+
- when you want the sound of a good-IR reverb without choosing an IR
|
|
18
|
+
- vocal reverb (less character than Convolution Reverb's vintage IRs)
|
|
19
|
+
- moderate-density pad reverb
|
|
20
|
+
- sessions where CPU is tight (lower than full Convolution)
|
|
21
|
+
|
|
22
|
+
risky_for:
|
|
23
|
+
- tracks that need SPECIFIC vintage character (Farfisa Spring, etc. — use Convolution)
|
|
24
|
+
- dub-techno (Convolution Reverb with Stocktronics/Farfisa IR is canonical)
|
|
25
|
+
- ambient drone (Convolution Reverb with cathedral IR is canonical)
|
|
26
|
+
- plate-reverb snare (Convolution Reverb with plate IR more authentic)
|
|
27
|
+
|
|
28
|
+
subtle_ranges:
|
|
29
|
+
wet: [0.08, 0.22]
|
|
30
|
+
decay: [0.3, 1.5] # seconds
|
|
31
|
+
predelay: [0, 20] # ms
|
|
32
|
+
moderate_ranges:
|
|
33
|
+
wet: [0.25, 0.50]
|
|
34
|
+
decay: [1.5, 4.0]
|
|
35
|
+
predelay: [20, 60]
|
|
36
|
+
aggressive_ranges:
|
|
37
|
+
wet: [0.55, 1.0]
|
|
38
|
+
decay: [4.0, 12.0]
|
|
39
|
+
predelay: [60, 200]
|
|
40
|
+
|
|
41
|
+
pairings:
|
|
42
|
+
- device: EQ Eight
|
|
43
|
+
order: before
|
|
44
|
+
purpose: shelf-cut bass from the dry input so reverb doesn't mud
|
|
45
|
+
- device: EQ Eight
|
|
46
|
+
order: after
|
|
47
|
+
purpose: shelf-cut bass from the wet return if multiple sources share reverb
|
|
48
|
+
- device: Compressor
|
|
49
|
+
order: after
|
|
50
|
+
purpose: tame reverb dynamic range on dense passages
|
|
51
|
+
|
|
52
|
+
anti_pairings:
|
|
53
|
+
- "Another reverb in series (stack reverbs by bus-routing, not series)"
|
|
54
|
+
- "Convolution Reverb on the same return (redundant — pick one)"
|
|
55
|
+
|
|
56
|
+
remeasure:
|
|
57
|
+
- spectral_balance
|
|
58
|
+
- stereo_width
|
|
59
|
+
- low_headroom
|
|
60
|
+
- mud_content
|
|
61
|
+
|
|
62
|
+
dimensional_impact:
|
|
63
|
+
structural: low
|
|
64
|
+
rhythmic: low
|
|
65
|
+
timbral: moderate
|
|
66
|
+
spatial: high
|
|
67
|
+
|
|
68
|
+
appears_in_packets:
|
|
69
|
+
artists: []
|
|
70
|
+
genres: []
|
|
71
|
+
# Hybrid Reverb is a modern Ableton device — not named in the current
|
|
72
|
+
# concept packets (which favor Convolution Reverb for character). Use
|
|
73
|
+
# when a packet doesn't specify an IR.
|
|
74
|
+
|
|
75
|
+
notes: |
|
|
76
|
+
Hybrid Reverb is the reach-for reverb when the aesthetic doesn't
|
|
77
|
+
require a specific IR. For dub-techno, ambient, and modern-classical
|
|
78
|
+
— use Convolution Reverb with a specific IR. For house, techno,
|
|
79
|
+
pop, vocal — Hybrid Reverb is often the cleaner choice.
|
|
80
|
+
|
|
81
|
+
In pressure-test terms: if a concept packet's reach_for.effects
|
|
82
|
+
list names "Convolution Reverb" (as most do), do NOT substitute
|
|
83
|
+
Hybrid Reverb. The packet specifies the character explicitly.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
id: operator
|
|
2
|
+
name: Operator
|
|
3
|
+
type: instrument
|
|
4
|
+
category: synth
|
|
5
|
+
aliases:
|
|
6
|
+
- "operator"
|
|
7
|
+
atlas_search_query: "Operator"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- FM bell clusters (DX7-adjacent)
|
|
11
|
+
- Aphex-style FM pads
|
|
12
|
+
- sci-fi / metallic timbres
|
|
13
|
+
- Haas-style deep bass (minimal-techno)
|
|
14
|
+
- ring-modulator via internal modulation matrix
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- FM-heavy timbres (bells, metal, glass-like tones)
|
|
18
|
+
- atmospheric Aphex-style ambient pads
|
|
19
|
+
- DX7-era sound design
|
|
20
|
+
- inharmonic partials (microtonal bells)
|
|
21
|
+
- when the aesthetic explicitly calls for FM character
|
|
22
|
+
|
|
23
|
+
risky_for:
|
|
24
|
+
- warm analog pads (use Drift or Poli)
|
|
25
|
+
- acid leads (use Analog's 303 mode)
|
|
26
|
+
- sampled percussion (use Simpler)
|
|
27
|
+
- wobble bass (use Wavetable)
|
|
28
|
+
- granular textures (use Granulator III or Vector Grain)
|
|
29
|
+
|
|
30
|
+
subtle_ranges:
|
|
31
|
+
operator_ratio: [0.5, 3.0] # ratio between operators
|
|
32
|
+
feedback: [0.0, 0.15]
|
|
33
|
+
envelope_release: [0.1, 0.4]
|
|
34
|
+
moderate_ranges:
|
|
35
|
+
operator_ratio: [3.0, 8.0]
|
|
36
|
+
feedback: [0.15, 0.5]
|
|
37
|
+
envelope_release: [0.4, 1.5]
|
|
38
|
+
aggressive_ranges:
|
|
39
|
+
operator_ratio: [8.0, 20.0] # extreme FM (metallic, inharmonic)
|
|
40
|
+
feedback: [0.5, 0.9]
|
|
41
|
+
envelope_release: [1.5, 10.0]
|
|
42
|
+
|
|
43
|
+
pairings:
|
|
44
|
+
- device: Erosion
|
|
45
|
+
order: after
|
|
46
|
+
purpose: digital grit complementing FM metallic timbre
|
|
47
|
+
- device: Pitch Hack
|
|
48
|
+
order: after
|
|
49
|
+
purpose: pitch-shift FM output for further timbral extremes
|
|
50
|
+
- device: Convolution Reverb
|
|
51
|
+
order: parallel
|
|
52
|
+
purpose: cathedral space for Aphex ambient pads
|
|
53
|
+
- device: Auto Filter
|
|
54
|
+
order: after
|
|
55
|
+
purpose: shape FM harmonics via filter automation
|
|
56
|
+
|
|
57
|
+
anti_pairings:
|
|
58
|
+
- "Wavetable in same chain (redundant complex synth)"
|
|
59
|
+
- "Chorus-Ensemble (warms out the FM character Operator is for)"
|
|
60
|
+
|
|
61
|
+
remeasure:
|
|
62
|
+
- plugin_health
|
|
63
|
+
- track_meters
|
|
64
|
+
- spectral_balance # FM creates unpredictable high-frequency content
|
|
65
|
+
- low_headroom # deep FM bass needs headroom
|
|
66
|
+
|
|
67
|
+
dimensional_impact:
|
|
68
|
+
structural: low
|
|
69
|
+
rhythmic: low
|
|
70
|
+
timbral: high
|
|
71
|
+
spatial: low
|
|
72
|
+
|
|
73
|
+
appears_in_packets:
|
|
74
|
+
artists:
|
|
75
|
+
- aphex-twin
|
|
76
|
+
- autechre
|
|
77
|
+
- jeff-mills
|
|
78
|
+
- shackleton
|
|
79
|
+
- villalobos
|
|
80
|
+
genres:
|
|
81
|
+
- idm
|
|
82
|
+
- minimal-techno
|
|
83
|
+
- deep-minimal
|
|
84
|
+
- dubstep
|
|
85
|
+
- experimental
|
|
86
|
+
|
|
87
|
+
notes: |
|
|
88
|
+
Operator is the FM specialist. Reach for it ONLY when the aesthetic
|
|
89
|
+
explicitly names FM character (Aphex, Autechre, IDM-adjacent) — for
|
|
90
|
+
warmth use Drift, for analog classic use Poli/Analog.
|
|
91
|
+
|
|
92
|
+
Signature techniques in atlas: "Aphex ambient FM pad" (specific
|
|
93
|
+
algorithm), "DX7 bell cluster", "303 acid bass" (also Analog).
|
|
94
|
+
Check atlas signature_techniques for algorithm-level recipes.
|
|
95
|
+
|
|
96
|
+
Operator's 6-operator algorithm matters — the "FM pad" sounds use
|
|
97
|
+
different algorithms from the "metallic bell" sounds. Load from
|
|
98
|
+
atlas preset, don't invent from scratch.
|