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,34 @@
|
|
|
1
|
+
# Ableton Live 12 Device Knowledge Corpus
|
|
2
|
+
|
|
3
|
+
Comprehensive reference for every built-in instrument and effect in Ableton Live 12. Written for an AI production assistant — parameter-level understanding, creative applications, and techniques from experimental electronic music producers.
|
|
4
|
+
|
|
5
|
+
## How to Use This Corpus
|
|
6
|
+
|
|
7
|
+
This is not a manual. It's a **creative knowledge base**. When the user asks to "design a sound" or "make it more interesting," consult these references to find specific parameters and techniques that achieve the goal. Don't just reach for obvious parameters — think about how SOPHIE, Arca, Aphex Twin, minimal-techno producers, or Basic Channel would approach the same problem.
|
|
8
|
+
|
|
9
|
+
## Files
|
|
10
|
+
|
|
11
|
+
### Instruments
|
|
12
|
+
- `instruments-synths.md` — Wavetable, Drift, Analog, Operator, Meld (synthesis engines)
|
|
13
|
+
- `instruments-physical.md` — Collision, Tension, Electric (physical modeling)
|
|
14
|
+
- `instruments-samplers.md` — Simpler, Sampler, Drum Rack, Drum Sampler
|
|
15
|
+
|
|
16
|
+
### Effects — Processing
|
|
17
|
+
- `effects-dynamics.md` — Compressor, Glue Compressor, Multiband Dynamics, Limiter, Gate, Color Limiter
|
|
18
|
+
- `effects-eq-filter.md` — EQ Eight, EQ Three, Auto Filter, Channel EQ
|
|
19
|
+
- `effects-distortion.md` — Saturator, Roar, Overdrive, Pedal, Amp, Cabinet, Erosion, Redux, Vinyl Distortion, Dynamic Tube, Drum Buss
|
|
20
|
+
|
|
21
|
+
### Effects — Space & Time
|
|
22
|
+
- `effects-reverb.md` — Reverb, Convolution Reverb, Hybrid Reverb
|
|
23
|
+
- `effects-delay.md` — Delay, Echo, Grain Delay
|
|
24
|
+
- `effects-modulation.md` — Chorus-Ensemble, Phaser-Flanger, Frequency Shifter, Shifter, Auto Pan-Tremolo
|
|
25
|
+
|
|
26
|
+
### Effects — Spectral & Experimental
|
|
27
|
+
- `effects-spectral.md` — Spectral Resonator, Spectral Time, Spectral Blur, Resonators, Corpus, Vocoder
|
|
28
|
+
|
|
29
|
+
### Creative Chains
|
|
30
|
+
- `chains-genre.md` — Effect chain blueprints by genre (dub techno, trap, SOPHIE-style, ambient, experimental)
|
|
31
|
+
- `chains-technique.md` — Technique-specific chains (parallel processing, creative sidechain, feedback loops, resampling workflows)
|
|
32
|
+
|
|
33
|
+
### Artist Techniques
|
|
34
|
+
- `artist-techniques.md` — How specific artists use Ableton's built-in devices (researched from interviews, tutorials, and analysis)
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Automation as Music — The Art of Parameter Performance
|
|
2
|
+
|
|
3
|
+
The greatest electronic musicians don't play notes — they play parameters. A filter cutoff automated over 64 bars IS the melody. A reverb send thrown open for one beat IS the harmony. The difference between a demo and a masterpiece is often not the sounds — it's the automation.
|
|
4
|
+
|
|
5
|
+
## The Fundamental Principle
|
|
6
|
+
|
|
7
|
+
**A static parameter is a dead parameter.** In acoustic music, every note is different — the player's breath, touch, and emotion create micro-variations. In electronic music, those variations must be created deliberately through automation. Every important parameter should move, even if only by 2-3%.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Part 1: Automation Shapes and What They Mean Musically
|
|
12
|
+
|
|
13
|
+
### Linear Ramps
|
|
14
|
+
A straight line from value A to value B. The simplest shape. Use for:
|
|
15
|
+
- **Build-ups:** Filter cutoff rising linearly over 16-32 bars before a drop
|
|
16
|
+
- **Fade outs:** Volume decreasing to zero over 8-16 bars
|
|
17
|
+
- **Limitation:** Linear ramps feel mechanical. Always prefer curves for musical expression.
|
|
18
|
+
|
|
19
|
+
### Exponential Curves
|
|
20
|
+
Slow start, accelerating change. Mimics how tension works in music — the last 4 bars contain more change than the first 12. Use for:
|
|
21
|
+
- **Dramatic filter sweeps** — the ear perceives exponential change as "building"
|
|
22
|
+
- **Reverb tail growth** — send level increasing exponentially creates "swelling space"
|
|
23
|
+
- **Key insight:** Human perception of loudness is logarithmic, so exponential volume changes feel linear. Linear volume fades feel like they get quiet too fast at first.
|
|
24
|
+
|
|
25
|
+
### S-Curves
|
|
26
|
+
Slow start, fast middle, slow end. The most natural shape for transitions. Use for:
|
|
27
|
+
- **Crossfades between elements** — one fades out as another fades in
|
|
28
|
+
- **Filter sweeps that "settle"** — opens quickly in the middle, then gently arrives at target
|
|
29
|
+
- **The long minimal-techno transition:** S-curve on multiple parameters simultaneously over 32 bars
|
|
30
|
+
|
|
31
|
+
### Perlin Noise
|
|
32
|
+
Smooth, organic randomness. Each value is related to the previous one (no sudden jumps) but the path is unpredictable. Use for:
|
|
33
|
+
- **Filter cutoff drift** — sounds like a hand slowly exploring a knob
|
|
34
|
+
- **Send level breathing** — reverb/delay amount fluctuates organically
|
|
35
|
+
- **Oscillator detune wandering** — pitch instability that feels analog
|
|
36
|
+
- **Key insight:** Perlin noise at 0.05-0.2 Hz is below conscious perception. The listener feels "alive" without knowing why.
|
|
37
|
+
|
|
38
|
+
### Brownian Motion
|
|
39
|
+
Random walk — each step is small but the cumulative drift can be large. More unpredictable than Perlin. Use for:
|
|
40
|
+
- **Very slow parameter evolution** over minutes — the sound "wanders" like weather
|
|
41
|
+
- **Stereo field drifting** — pan automation that meanders rather than oscillates
|
|
42
|
+
- **Combined with manual override:** Set Brownian as a baseline, then make manual adjustments on top
|
|
43
|
+
|
|
44
|
+
### Step Automation
|
|
45
|
+
Discrete jumps between values. The opposite of smooth. Use for:
|
|
46
|
+
- **Rhythmic gating** — volume steps creating on/off patterns (trance gate effect)
|
|
47
|
+
- **Filter steps** — different cutoff per beat for rhythmic timbral changes
|
|
48
|
+
- **The glitch technique:** Very fast steps (32nd or 64th note rate) on multiple parameters simultaneously = controlled chaos
|
|
49
|
+
|
|
50
|
+
### Sawtooth / Triangle Automation
|
|
51
|
+
Repeating rise-and-fall patterns. Use for:
|
|
52
|
+
- **Pseudo-LFO on parameters that don't have built-in modulation** — draw a triangle on track volume for tremolo
|
|
53
|
+
- **Rising sawtooth on filter** — creates repetitive filter sweeps that reset every bar (trance/acid)
|
|
54
|
+
- **Asymmetric saw:** Fast rise, slow fall = different musical effect than slow rise, fast fall
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Part 2: What to Automate (Beyond the Obvious)
|
|
59
|
+
|
|
60
|
+
Most producers only automate volume, pan, and filter cutoff. The masters automate everything.
|
|
61
|
+
|
|
62
|
+
### Send Levels (The Dub Producer's Instrument)
|
|
63
|
+
- **Reverb send throws** — 0→70% for half a beat, then back to 0. The element stabs into the reverb space and the tail fills the gap. King Tubby, Lee "Scratch" Perry, and Basic Channel all treat the send knob as a performance instrument.
|
|
64
|
+
- **Delay send rhythmic patterns** — automate the send in a rhythmic pattern (not on every beat, but on specific accents). This creates a call-and-response between the dry and wet signals.
|
|
65
|
+
- **Cross-send modulation** — automate Send A (reverb) going UP while Send B (delay) goes DOWN over 16 bars, then reverse. The spatial character morphs from "room" to "echo" and back.
|
|
66
|
+
|
|
67
|
+
### Filter Resonance (Not Just Cutoff)
|
|
68
|
+
- **Resonance alone** without moving cutoff — creates a subtle "emphasis" that brightens and thins the sound at the current cutoff point. Automate 15-40% range.
|
|
69
|
+
- **Resonance spikes** — brief 0→80% resonance for 1 beat creates a "ring" or "ping" at the filter frequency. Musical accent.
|
|
70
|
+
- **Counter-motion:** Cutoff goes down while resonance goes up — the sound gets darker but the filter "screams" more. Creates tension.
|
|
71
|
+
|
|
72
|
+
### Distortion Parameters
|
|
73
|
+
- **Saturator Drive automated with the beat** — drive increases on beats 2 and 4 = the mix gets grittier on the snare hits. Pull back on beats 1 and 3 for the kick to stay clean.
|
|
74
|
+
- **Roar stage mix** — in Parallel mode, automate the balance between stages. Stage 1 (clean tube) dominant in verses, Stage 2 (aggressive) dominant in choruses.
|
|
75
|
+
- **Erosion Amount as texture evolution** — slowly increase Erosion over a 64-bar section. The sound gradually degrades from pristine to lo-fi. The listener doesn't notice the transition — they just feel the vibe shift.
|
|
76
|
+
|
|
77
|
+
### Reverb Internal Parameters
|
|
78
|
+
- **Decay Time automation** — short decay (1s) during busy sections for clarity, long decay (5-8s) during breakdowns for depth. The room "breathes" with the arrangement.
|
|
79
|
+
- **Reverb Freeze** — automate on/off. Freeze captures the current reverb tail as a drone. Use at section transitions: Freeze ON for 4 bars during breakdown, OFF when the beat returns.
|
|
80
|
+
- **Diffusion** — low diffusion during rhythmic sections (you hear distinct echoes), high diffusion during ambient sections (smooth wash). The reverb character matches the musical energy.
|
|
81
|
+
- **Pre-delay** — increase pre-delay during loud sections (separates reverb from source for clarity), decrease during quiet sections (source and reverb merge into one).
|
|
82
|
+
|
|
83
|
+
### Delay Internal Parameters
|
|
84
|
+
- **Feedback modulation** — push to 85% for 2 beats then pull to 50%. Creates a momentary feedback spiral that self-limits. The Dub Siren technique.
|
|
85
|
+
- **Delay Time (in Repitch mode)** — changing delay time pitches the echoes. Automate a slow sweep (±10% over 8 bars) for warped, wow-and-flutter echoes. Basic Channel signature.
|
|
86
|
+
- **Filter inside the delay** — automate the delay's internal filter cutoff. Each echo gets progressively darker (or brighter). Creates a natural "fading into distance" effect.
|
|
87
|
+
- **Mod Freq + Dly < Mod** — automate the modulation amount. During sparse sections, increase modulation for wobbly, organic echoes. During dense sections, reduce for cleaner timing.
|
|
88
|
+
|
|
89
|
+
### Synthesis Parameters You Might Not Think to Automate
|
|
90
|
+
- **Wavetable Position** — LFO is obvious, but manually drawn automation tells a specific timbral story. Draw the position to follow the emotional arc: brighter wavetable positions during peaks, darker during valleys.
|
|
91
|
+
- **FM Amount (Operator)** — automate the modulator level. Low during pads, spike during stabs, medium during leads. The harmonic complexity follows the musical tension.
|
|
92
|
+
- **Oscillator feedback** — in Operator, automate feedback 10-40% range. Creates a sound that morphs from pure (low feedback) to gritty (high feedback) over time.
|
|
93
|
+
- **Drift amount** — in Drift synth, automate the Drift parameter itself. Low Drift during precise sections, high Drift during loose, organic sections.
|
|
94
|
+
- **Unison Amount** (Wavetable) — automate 0→50% over a build-up. The sound literally "widens and thickens" as the section grows. Return to 0 for a sudden "focused" impact.
|
|
95
|
+
|
|
96
|
+
### Rack Chain Volumes
|
|
97
|
+
- **Audio Effect Rack with multiple chains** — automate the chain selector or individual chain volumes to morph between completely different effect configurations. Chain 1: clean reverb. Chain 2: distorted delay. Chain 3: granular destruction. Crossfade between them = the sound evolves through processing states.
|
|
98
|
+
- **Instrument Rack layers** — automate the chain volumes of a layered synth. Start with only the sub layer audible, gradually bring in the mid layer, then the bright layer. The sound "unfolds" from bottom to top.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Part 3: Multi-Parameter Automation (The Macro Gesture)
|
|
103
|
+
|
|
104
|
+
The most powerful automation isn't on single parameters — it's on coordinated groups that create a single musical gesture.
|
|
105
|
+
|
|
106
|
+
### The "Open Up" Gesture
|
|
107
|
+
Simultaneously automate over 8-16 bars:
|
|
108
|
+
- Filter cutoff: 30% → 65%
|
|
109
|
+
- Filter resonance: 15% → 30%
|
|
110
|
+
- Reverb send: 25% → 45%
|
|
111
|
+
- Stereo width (or pan spread): narrow → wide
|
|
112
|
+
- **Musical meaning:** The sound "opens up" — goes from closed/intimate to wide/expansive. Use at the transition from verse to chorus, from build to drop.
|
|
113
|
+
|
|
114
|
+
### The "Submerge" Gesture
|
|
115
|
+
Simultaneously automate over 16-32 bars:
|
|
116
|
+
- Filter cutoff: 65% → 25%
|
|
117
|
+
- Reverb decay: 3s → 8s
|
|
118
|
+
- Delay feedback: 40% → 70%
|
|
119
|
+
- Volume: 0dB → -6dB
|
|
120
|
+
- Erosion amount: 0% → 15%
|
|
121
|
+
- **Musical meaning:** The sound "submerges" — sinks into depth and distance. Use at the transition into a breakdown or outro.
|
|
122
|
+
|
|
123
|
+
### The "WTF" Gesture (2-4 beats only)
|
|
124
|
+
Simultaneously snap:
|
|
125
|
+
- Reverb send: 0% → 100% (everything washes out)
|
|
126
|
+
- Delay feedback: 50% → 95% (echoes spiral)
|
|
127
|
+
- Filter cutoff: current → fully open
|
|
128
|
+
- Then ALL snap back to normal after 2-4 beats
|
|
129
|
+
- **Musical meaning:** A moment of chaos that instantly resolves. The listener's brain says "what was THAT?" and re-engages attention.
|
|
130
|
+
|
|
131
|
+
### The "Human Hand" Technique
|
|
132
|
+
Record automation live (via mouse or MIDI controller) instead of drawing it. The tiny timing imperfections and non-mathematical curves create a fundamentally different feel than drawn automation. Then edit the recording — smooth the extreme mistakes but keep the organic character.
|
|
133
|
+
|
|
134
|
+
This is how performer-driven techno works live: filter sweeps are performed, not drawn. The audience feels the human gesture even when they can't see the performer.
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Part 4: Automation Density by Section
|
|
139
|
+
|
|
140
|
+
Different parts of a track need different automation density:
|
|
141
|
+
|
|
142
|
+
### Intro (sparse automation)
|
|
143
|
+
- 1-2 parameters moving slowly (filter, reverb send)
|
|
144
|
+
- Very slow rates (0.05-0.1 Hz effective rate)
|
|
145
|
+
- Purpose: establish mood, create anticipation
|
|
146
|
+
|
|
147
|
+
### Build-Up (increasing density)
|
|
148
|
+
- 3-5 parameters, all moving in the same "opening" direction
|
|
149
|
+
- Exponential curves — change accelerates
|
|
150
|
+
- Purpose: create tension and forward momentum
|
|
151
|
+
|
|
152
|
+
### Peak/Drop (maximum density)
|
|
153
|
+
- 5-8 parameters all active
|
|
154
|
+
- Mix of slow sweeps and rhythmic modulation
|
|
155
|
+
- Send throws, filter accents, distortion spikes
|
|
156
|
+
- Purpose: maximum energy and interest
|
|
157
|
+
|
|
158
|
+
### Breakdown (sudden reduction)
|
|
159
|
+
- Drop to 1-2 parameters
|
|
160
|
+
- Very slow, gentle movement
|
|
161
|
+
- Purpose: contrast, breathing room, emotional reset
|
|
162
|
+
|
|
163
|
+
### Outro (mirror of intro)
|
|
164
|
+
- Gradually reduce automation density
|
|
165
|
+
- Parameters return to starting values (or close)
|
|
166
|
+
- The final automation move should be the filter closing to its lowest point
|
|
167
|
+
- Purpose: the sound "returns to where it started" — cyclical, complete
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## Part 5: Learning from the Masters
|
|
172
|
+
|
|
173
|
+
### Long-Form Minimal Techno: Filter as Melody
|
|
174
|
+
A hallmark of deep minimal techno is automating a single lowpass filter on a pad for 8+ minutes. The filter IS the melody — it opens to reveal harmonics, closes to create tension, breathes with the groove. The automation is performed live, giving each performance unique character. The filter rarely moves by more than 5-10% at a time, but over 8 minutes it covers the full range.
|
|
175
|
+
|
|
176
|
+
### Basic Channel: Space as Composition
|
|
177
|
+
Mark Ernestus and Moritz von Oswald automate delay send levels, delay feedback, and reverb sends as their primary compositional tool. A chord stab enters the delay at 70% feedback — the echoes build up, creating a harmonic cloud. Then the feedback drops to 40% — the cloud thins and the next stab enters. The delay IS the arrangement.
|
|
178
|
+
|
|
179
|
+
### Aphex Twin: Parameter Density
|
|
180
|
+
Richard D. James automates dozens of parameters simultaneously at very high speed (32nd note and faster). Filter cutoffs, oscillator frequencies, effect parameters all changing independently at different rates create the "impossible complexity" that defines his sound. The key: each parameter has its own automation rate, and the rates are intentionally non-related (no multiples). This creates ever-evolving patterns that never exactly repeat.
|
|
181
|
+
|
|
182
|
+
### SOPHIE: Extreme Parameter Snapshots
|
|
183
|
+
SOPHIE's technique was to set up a sound, then rapidly switch between extreme parameter configurations — like snapshots. Filter fully open → fully closed in one beat. Distortion zero → maximum in one step. No smooth transitions — pure contrast. This creates the "hyperplastic" character: sounds that feel like they're being molded by an invisible force.
|
|
184
|
+
|
|
185
|
+
### Boards of Canada: Decay as Atmosphere
|
|
186
|
+
Marcus Eoin and Michael Sandison automate parameters to simulate degradation: filter slowly closing over minutes (tape getting worn), Vinyl Distortion amount slowly increasing (record deteriorating), subtle pitch detune growing (tape machine dying). The music doesn't just play — it deteriorates, creating the nostalgic feeling of listening to something from the past.
|
|
187
|
+
|
|
188
|
+
### Amon Tobin: Micro-Edit as Expression
|
|
189
|
+
Amon Tobin automates at the sample level — chopping, reordering, and processing tiny fragments of audio with rapidly changing effects. Each 16th note might have a different filter setting, different reverb amount, different distortion level. The automation IS the rhythm.
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## Part 6: Wonder Mode Automation Intelligence
|
|
194
|
+
|
|
195
|
+
When Wonder Mode generates variants, the automation layer is what separates "a clip arrangement" from "a musical journey." Every Wonder variant should include:
|
|
196
|
+
|
|
197
|
+
1. **Filter arc** — at minimum, one element's filter should evolve over the full track length
|
|
198
|
+
2. **Space arc** — reverb/delay sends should breathe with the arrangement density
|
|
199
|
+
3. **Micro-modulation** — every sustained sound should have sub-perceptual LFO on at least one parameter
|
|
200
|
+
4. **2-3 macro gestures** — coordinated multi-parameter moves at section transitions
|
|
201
|
+
5. **1-2 WTF moments** — brief parameter disruptions that break and re-establish the hypnosis
|
|
202
|
+
6. **Temporal density mapping** — automation density should follow the arrangement energy (sparse in intro/outro, dense at peaks)
|
|
203
|
+
|
|
204
|
+
The automation is not optional garnish — it is the primary vehicle for musical expression in electronic music. A perfectly arranged track with no automation is a skeleton. The automation is the flesh, the breath, and the soul.
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
# Genre-Specific Effect Chains & Artist Techniques
|
|
2
|
+
|
|
3
|
+
## Dub Techno (Basic Channel, Deepchord, Echospace)
|
|
4
|
+
|
|
5
|
+
### The Dub Chord (fundamental technique)
|
|
6
|
+
1. **Source:** Analog or Drift — short chord stab (attack 0ms, decay 80-150ms, sustain 20%)
|
|
7
|
+
2. **Filter:** Lowpass at 300-600Hz (dark, submerged)
|
|
8
|
+
3. **Echo:** Ping Pong, 3/16 time, Feedback 65-75%, Repitch mode, Wobble 15%
|
|
9
|
+
4. **Reverb:** (on return) Decay 5-8s, Chorus 0.02Hz, ER Spin 0.2Hz
|
|
10
|
+
5. **The key:** The delay tail IS the pad. The source stab is just the trigger. Open the delay filter slowly over 32 bars — the chord "wakes up."
|
|
11
|
+
|
|
12
|
+
### The Dusty Loop
|
|
13
|
+
1. **Drum source** → Vinyl Distortion (Tracing 20%, Crackle 8%)
|
|
14
|
+
2. → Auto Filter (Lowpass, 4kHz, Res 15%, LFO at 0.08Hz depth 10%)
|
|
15
|
+
3. → Reverb send (35-45%) with long decay
|
|
16
|
+
4. → Result: Drums sound like they're playing on a worn record in a concrete room
|
|
17
|
+
|
|
18
|
+
### The Sub Breath
|
|
19
|
+
1. **Analog:** Sine osc, -2 octave, mono, glide ON
|
|
20
|
+
2. **F1:** LP24, Freq 28%, F1 Freq < Env 30%, Fast attack, 200ms decay
|
|
21
|
+
3. → Drum Buss (Boom at 60%, Freq 52Hz)
|
|
22
|
+
4. → Saturator (Analog Clip, Drive 5dB)
|
|
23
|
+
5. → Result: Sub bass that "breathes" — each note has a momentary brightness then settles into deep sub
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Minimal Techno (Perlon, Kompakt, Raum·Musik)
|
|
28
|
+
|
|
29
|
+
### Micro-Groove Percussion
|
|
30
|
+
1. **Operator:** Algorithm 1, Osc A Sine 8bit, Osc B Sine Coarse 5 Fine 70
|
|
31
|
+
2. Short envelopes (30-80ms decay on all)
|
|
32
|
+
3. Pitch Env: +12st, 15ms decay
|
|
33
|
+
4. → Erosion (12%, 8kHz) — adds digital texture
|
|
34
|
+
5. → Auto Filter (Bandpass, 1.5kHz, Res 40%, LFO at 0.1Hz depth 8%)
|
|
35
|
+
6. **Sequence:** Off-grid 32nd notes with varying velocity (40-100)
|
|
36
|
+
7. **Pan:** Random per hit (±30%)
|
|
37
|
+
|
|
38
|
+
### The Organic Filter Sweep
|
|
39
|
+
1. **Any pad or texture** → Auto Filter (Lowpass, OSR circuit)
|
|
40
|
+
2. Freq: Automated with Perlin/brownian noise curve over 32-64 bars
|
|
41
|
+
3. Res: 35-50% (enough to hear the sweep, not enough to ring)
|
|
42
|
+
4. Env Amount: 15-25% (filter follows the input dynamics slightly)
|
|
43
|
+
5. **LFO:** 0.05-0.15 Hz, Amount 8-12% (micro-breathing on top of the macro sweep)
|
|
44
|
+
6. **Result:** A filter movement that feels like a human hand slowly turning a knob — not a computer drawing a line
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## SOPHIE / PC Music / Hyperpop
|
|
49
|
+
|
|
50
|
+
### The Plastic Bass
|
|
51
|
+
1. **Wavetable:** Digital wavetable, Position 80%, Osc Effect = Sync at 60%
|
|
52
|
+
2. Filter: Lowpass, OSR circuit, Freq 50%, Res 65%
|
|
53
|
+
3. Pitch Env: +24st, Decay 40-60ms (the "zap")
|
|
54
|
+
4. → Saturator (Sinoid Fold, Drive 15-20dB, Color +30%)
|
|
55
|
+
5. → Erosion (Wide Noise, 25%, Freq 6kHz)
|
|
56
|
+
6. → Redux (Bit 8, Sample Rate 4x) at Dry/Wet 25%
|
|
57
|
+
7. **Result:** Bubbly, metallic, hyperreal bass that sounds like liquid plastic
|
|
58
|
+
|
|
59
|
+
### The Maximal OTT Wall
|
|
60
|
+
1. **Any synth chord** → Multiband Dynamics (OTT preset)
|
|
61
|
+
2. Stack 10-30 instances (yes, really)
|
|
62
|
+
3. Insert different effects between some instances:
|
|
63
|
+
- Between #5 and #6: Phaser-Flanger (Phaser mode, Rate 0.3Hz)
|
|
64
|
+
- Between #15 and #16: Chorus-Ensemble (Rate 0.5Hz)
|
|
65
|
+
- Between #20 and #21: Frequency Shifter (Ring mode, 1.5Hz)
|
|
66
|
+
4. Record the output as audio
|
|
67
|
+
5. **Use the audio as source material** — chop, pitch, filter, process further
|
|
68
|
+
6. This creates sounds that literally cannot be designed any other way
|
|
69
|
+
|
|
70
|
+
### SOPHIE Distortion Chain
|
|
71
|
+
1. **Source:** Simple sine wave at bass frequencies
|
|
72
|
+
2. → Saturator (Sinoid Fold, Drive 18dB)
|
|
73
|
+
3. → Roar (Multiband: Low=Tube 40%, Mid=Feedback 50%, High=BitReduce 30%)
|
|
74
|
+
4. → Compressor (Fast attack, fast release — glues the chaos)
|
|
75
|
+
5. → Auto Filter (Lowpass 3kHz, Res 50%, LFO 2Hz at 20%)
|
|
76
|
+
6. **Result:** The simple sine becomes a living, morphing, metallic entity
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## Arca / Experimental / Deconstructed
|
|
81
|
+
|
|
82
|
+
### Warped Texture (Simpler stretch technique)
|
|
83
|
+
1. Load ANY sample into Simpler → Switch to **Texture** mode
|
|
84
|
+
2. Set Grain size to minimum, Flux to 50-80%
|
|
85
|
+
3. Transpose ±12-24 semitones (extreme pitch shift)
|
|
86
|
+
4. → Saturator (Soft Sine, 10-15dB)
|
|
87
|
+
5. → Spectral Resonator (MIDI-controlled, Decay 300ms, Stretch 70%)
|
|
88
|
+
6. → Grain Delay (Pitch -7, Spray 60ms, Feedback 55%)
|
|
89
|
+
7. **Result:** Any source material becomes an alien, warped, pitched texture
|
|
90
|
+
|
|
91
|
+
### Glitch Percussion
|
|
92
|
+
1. **Operator:** Very short envelopes (5-30ms), multiple FM oscillators
|
|
93
|
+
2. → Beat Repeat (1/32 or 1/64 interval, Chance 40%, Variation 60%)
|
|
94
|
+
3. → Redux (Bit 6, Sample 4x, Dry/Wet 40%)
|
|
95
|
+
4. → Grain Delay (very short time, Pitch ±random, Spray 30ms)
|
|
96
|
+
5. Play rapid 64th note sequences with varying velocity
|
|
97
|
+
6. **Result:** Stuttering, bitcrushed, granular percussion clouds
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## Trap / 808 / Brazilian Bass
|
|
102
|
+
|
|
103
|
+
### The Growling 808
|
|
104
|
+
1. **Operator:** Osc A = Sine, Coarse 1
|
|
105
|
+
2. AEG: Attack 0ms, Decay 1.9s, Sustain -10dB, Release 1.5s
|
|
106
|
+
3. Pitch Env: +24st peak, 50ms decay (the "hit")
|
|
107
|
+
4. Voices: 1 (Mono), Glide ON at 15%
|
|
108
|
+
5. → Pedal (Fuzz mode, Gain 35%, Sub ON)
|
|
109
|
+
6. → Saturator (Hard Curve, Drive 8dB)
|
|
110
|
+
7. → EQ Eight: HP at 30Hz (clean sub), gentle boost at 80-120Hz
|
|
111
|
+
8. **Result:** Fat sub with audible harmonics and the growl that cuts on small speakers
|
|
112
|
+
|
|
113
|
+
### The Multiband 808 (trap producer technique)
|
|
114
|
+
1. 808 source → Audio Effect Rack with two chains:
|
|
115
|
+
- Chain A: Utility (Mono) → nothing else (clean sub, mono below 120Hz)
|
|
116
|
+
- Chain B: EQ Eight (HP at 120Hz) → Chorus-Ensemble (subtle) → Delay (1ms L / 10ms R, 0% feedback, 100% wet — Haas effect for width)
|
|
117
|
+
2. Zone the chains: Chain A receives only frequencies below 120Hz, Chain B above
|
|
118
|
+
3. **Result:** Mono sub for club systems + wide harmonics for stereo interest
|
|
119
|
+
|
|
120
|
+
### Brazilian Bass (baile funk distortion)
|
|
121
|
+
1. **808 or sub bass** → Saturator (Digital Clip, Drive 12-18dB)
|
|
122
|
+
2. → Roar (Serial: Stage 1=Tube 40%, Stage 2=Gate 30%, Stage 3=Tube 20%)
|
|
123
|
+
3. → Compressor (aggressive — ratio 8:1, fast attack, auto release)
|
|
124
|
+
4. → Drum Buss (Drive 30%, Crunch Medium 50%, Boom 60% at 55Hz)
|
|
125
|
+
5. **Result:** Hyper-compressed, distorted, chest-rattling bass that's characteristic of Brazilian electronic music
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Ambient / Drone / Film Score
|
|
130
|
+
|
|
131
|
+
### The Infinite Shimmer
|
|
132
|
+
1. **Any source** → send to Return with:
|
|
133
|
+
2. Grain Delay (Pitch +12, Time 40ms, Feedback 75%, Spray 20ms)
|
|
134
|
+
3. → Reverb (Decay 8-12s, Diffusion 90%, Chorus ON at 0.03Hz)
|
|
135
|
+
4. → Auto Filter (Lowpass 4kHz, gentle slope — prevents shimmer from getting harsh)
|
|
136
|
+
5. Send at 30-40% — source stays dry, shimmer builds in the return
|
|
137
|
+
6. **Automate send** to increase over 32 bars — sound gradually dissolves into shimmer
|
|
138
|
+
|
|
139
|
+
### The Drone Machine
|
|
140
|
+
1. **Short percussive hit** → Spectral Blur (Full range, Halo 500ms+, Freeze ON)
|
|
141
|
+
2. → Resonators (tuned to root + fifth, Decay 2-5s)
|
|
142
|
+
3. → Reverb (Decay 10-15s, Freeze ON)
|
|
143
|
+
4. One hit becomes an infinite evolving drone
|
|
144
|
+
5. **Modulate** Spectral Blur Freeze on/off to capture new content periodically
|
|
145
|
+
|
|
146
|
+
### Film Score Tension
|
|
147
|
+
1. **Collision** (Mallet exciting Membrane, Decay 3-5s)
|
|
148
|
+
2. → Spectral Time (Spectral Delay, Tilt 40%, Spray 20%, Feedback 60%)
|
|
149
|
+
3. → Roar (Parallel: Stage 1=Feedback 20%, Stage 2=Dispersion 30%)
|
|
150
|
+
4. → Convolution Reverb with large hall IR
|
|
151
|
+
5. Play low, sparse notes — each one evolves into a complex, tense texture
|
|
152
|
+
6. **This is the Jason Graves technique** (Dead Space composer) for horror/tension scoring
|
|
153
|
+
|
|
154
|
+
---
|
|
155
|
+
|
|
156
|
+
## Warp Records / IDM (Aphex Twin, Autechre, Boards of Canada)
|
|
157
|
+
|
|
158
|
+
### The Aphex Glitch
|
|
159
|
+
1. **Any drum sample** → Load into Simpler (Classic mode)
|
|
160
|
+
2. Sequence with 64th and 128th notes (grid at minimum)
|
|
161
|
+
3. Vary velocity wildly (30-127)
|
|
162
|
+
4. → Beat Repeat (1/32, Grid 1/32, Chance 25%)
|
|
163
|
+
5. → Redux (Bit 8, Sample 8x, Dry/Wet 30%)
|
|
164
|
+
6. → Auto Pan (Rate synced to 1/16, Amount 80% — extreme panning)
|
|
165
|
+
7. **Result:** Rapid-fire, bitcrushed, spatially scattered percussion — the IDM signature
|
|
166
|
+
|
|
167
|
+
### Boards of Canada Nostalgia
|
|
168
|
+
1. **Any synth pad** → Vinyl Distortion (Tracing 30%, Crackle 15%, Pinch 10%)
|
|
169
|
+
2. → Auto Filter (Lowpass 3kHz, LFO 0.06Hz at 15% — very slow filter drift)
|
|
170
|
+
3. → Chorus-Ensemble (Rate 0.3Hz, Amount 30%, Dry/Wet 25%)
|
|
171
|
+
4. → Reverb (short decay 1.5s, high diffusion — tight room)
|
|
172
|
+
5. Detune the synth by 5-10 cents (deliberately out of tune)
|
|
173
|
+
6. **Result:** Warm, warbly, nostalgic pad that sounds like it was recorded on deteriorating tape in the 1970s
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
# Creative Thinking Patterns for Sound Design
|
|
2
|
+
|
|
3
|
+
This reference teaches HOW to think about sound, not WHAT knobs to turn. A master producer doesn't think "set Filter 1 Freq to 0.45" — they think "this needs to feel like it's underwater" and then know which parameters create that sensation.
|
|
4
|
+
|
|
5
|
+
## Part 1: Emotional-to-Technical Mapping
|
|
6
|
+
|
|
7
|
+
When a user describes what they WANT with emotional language, translate it to specific technical actions:
|
|
8
|
+
|
|
9
|
+
### Tension & Anxiety
|
|
10
|
+
- **High-resonance filter sweep slowly rising** — the ear perceives rising pitch as increasing danger
|
|
11
|
+
- **Detuned oscillators** (±5-15 cents) — beating frequencies create unease
|
|
12
|
+
- **Sub-bass rumble** just below consciousness (25-40Hz, very low volume) — felt more than heard
|
|
13
|
+
- **Silence before the drop** — sudden removal of ALL reverb and delay for 2-4 beats is more tense than any sound
|
|
14
|
+
- **Dissonant intervals** — minor 2nds, tritones, minor 9ths in pad chords
|
|
15
|
+
- **Irregular rhythm** — remove one hat hit from a 16-step pattern. The gap creates tension.
|
|
16
|
+
- **Feedback on the edge** — delay feedback at 82-88%, the echoes almost but don't quite run away
|
|
17
|
+
|
|
18
|
+
### Warmth & Comfort
|
|
19
|
+
- **Even harmonics** — Saturator with Base parameter shifted (asymmetric distortion), tube-style Roar, Vinyl Distortion Tracing
|
|
20
|
+
- **Low-mid emphasis** (200-500Hz) — gentle boost in this range = perceived warmth
|
|
21
|
+
- **Slow filter modulation** — LP filter opening/closing at breathing rate (0.1-0.3 Hz)
|
|
22
|
+
- **Detuned unison** (2-5 cents) — creates chorus-like warmth without obvious effect
|
|
23
|
+
- **Long reverb tails** with high diffusion — wraps the sound in space
|
|
24
|
+
- **Soft attack** on everything — round the transients with compressor attack 10-30ms
|
|
25
|
+
|
|
26
|
+
### Nostalgia
|
|
27
|
+
- **Bit reduction** — Redux at 10-14 bit recreates the feel of older digital gear
|
|
28
|
+
- **Vinyl Distortion** — Tracing 20-30%, Crackle 8-15%
|
|
29
|
+
- **Lowpass at 3-5kHz** — removes modern "sparkle," creates vintage character
|
|
30
|
+
- **Slight pitch instability** — Drift parameter high (40-60%) or chorus with slow rate
|
|
31
|
+
- **Tape saturation** — Roar Tape mode at 15-25%
|
|
32
|
+
- **Detuning** — everything 3-8 cents flat sounds "older"
|
|
33
|
+
|
|
34
|
+
### Vastness / Space / Awe
|
|
35
|
+
- **Shimmer reverb** — Grain Delay (+12 pitch, short time, high feedback) → long Reverb
|
|
36
|
+
- **Very long reverb** (8-15s decay) with low diffusion — distinct reflections = large space
|
|
37
|
+
- **Octave-up harmonics** in the delay return — creates ethereal height
|
|
38
|
+
- **Wide stereo** — elements panned hard L/R with different delay times (Haas effect)
|
|
39
|
+
- **Sub-bass drone** — low sustained note creates the feeling of physical scale
|
|
40
|
+
- **Silence in the center** — hard-pan everything, leave the center empty. The void = vastness.
|
|
41
|
+
|
|
42
|
+
### Danger / Aggression / Impact
|
|
43
|
+
- **Distortion with high-frequency emphasis** — Saturator Color positive, or Roar with bright stages
|
|
44
|
+
- **Fast LFO on filter** (4-16 Hz) — creates aggressive wobble
|
|
45
|
+
- **Pitch envelope on kick/bass** — +24st dropping to 0 in 20-50ms = impact
|
|
46
|
+
- **Compression with fast attack** destroying transients — everything becomes a wall
|
|
47
|
+
- **Redux** (Bit 4-6, Sample 4-8x) — digital destruction
|
|
48
|
+
- **Resonant filter at high Q** sweeping through frequencies = screaming
|
|
49
|
+
|
|
50
|
+
### Melancholy / Sadness
|
|
51
|
+
- **Minor chords** with slow attack envelopes (500ms-2s)
|
|
52
|
+
- **Reverb with high decay** and damped highs (HiShelf low) — dark, distant space
|
|
53
|
+
- **Pitch drift downward** over time — very slow pitch LFO (-2-5 cents over 16 bars)
|
|
54
|
+
- **Sparse arrangement** — fewer elements = more emotional weight per element
|
|
55
|
+
- **Echo with filtered feedback** — each repeat darker than the last
|
|
56
|
+
- **Detuned melody** — play the melody 5-10 cents flat
|
|
57
|
+
|
|
58
|
+
### Euphoria / Joy / Release
|
|
59
|
+
- **Open filter after long closed section** — the "reveal" moment
|
|
60
|
+
- **Add ALL elements simultaneously** after a breakdown — the impact of fullness
|
|
61
|
+
- **Major chord with unison spread** — Wavetable unison Classic or Position Spread at 40-60%
|
|
62
|
+
- **Bright reverb** — high diffusion, minimal damping, medium decay
|
|
63
|
+
- **Increasing tempo** subtly (0.5 BPM over 32 bars) — subconscious excitement
|
|
64
|
+
- **Harmonic richness** — add Saturator Soft Sine at 5-8dB to brighten without EQ
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Part 2: Physical World Modeling with Ableton Devices
|
|
69
|
+
|
|
70
|
+
Making electronic sounds feel like real-world materials.
|
|
71
|
+
|
|
72
|
+
### Water
|
|
73
|
+
- **Chorus-Ensemble** at very slow rate (0.1-0.3 Hz) with high depth — creates liquid pitch shifting
|
|
74
|
+
- **Grain Delay** with medium spray (30-50ms) and pitch 0 — disperses the sound like ripples
|
|
75
|
+
- **Spectral Blur** at medium-high range (2-8kHz) — creates a "splash" effect on transients
|
|
76
|
+
- **Reverb** with high density, medium decay, lots of early reflections — creates the sense of enclosed water
|
|
77
|
+
- **Frequency Shifter** at very low rate (0.1-0.5 Hz) — creates slow spectral movement like sunlight through water
|
|
78
|
+
|
|
79
|
+
### Metal
|
|
80
|
+
- **Corpus** (Plate or Beam type) — adds physical metallic resonance to any source
|
|
81
|
+
- **Resonators** tuned to inharmonic intervals (not octaves/fifths) — metallic partial series
|
|
82
|
+
- **Operator** with non-integer ratios (Osc B Coarse 7, Fine 130) — FM metallic tones
|
|
83
|
+
- **Spectral Resonator** with Stretch < 100% — compressed partials = gamelan/bell
|
|
84
|
+
- **High resonance filter** swept quickly — metallic ring
|
|
85
|
+
- **Redux** at Bit 6-8 — adds metallic digital artifacts
|
|
86
|
+
|
|
87
|
+
### Glass
|
|
88
|
+
- **Operator** with very high ratios (Coarse 11-15) and short envelopes — crystalline FM
|
|
89
|
+
- **Wavetable** "Digital" category with Sync oscillator effect — sharp, brittle harmonics
|
|
90
|
+
- **Reverb** with very high diffusion, short-medium decay — the sound of a glass room
|
|
91
|
+
- **Spectral Resonator** with high partials count (32+) and medium stretch — dense harmonic cloud
|
|
92
|
+
|
|
93
|
+
### Breath / Air
|
|
94
|
+
- **Noise** (in any synth) filtered with slow-moving bandpass — spectral noise = breathing
|
|
95
|
+
- **Erosion** Wide Noise at 8-12kHz, low amount — adds "air" to anything
|
|
96
|
+
- **Reverb** ER Spin with high amount — creates breathy early reflections
|
|
97
|
+
- **Auto Filter** with envelope follower — filter tracks the dynamics, creating breath-like opening/closing
|
|
98
|
+
- **Drift** with noise turned up to -30dB — barely audible but adds organic "air"
|
|
99
|
+
|
|
100
|
+
### Fire / Heat
|
|
101
|
+
- **Roar** in Feedback mode — self-oscillating, unpredictable, chaotic
|
|
102
|
+
- **Saturator** Sinoid Fold with automated drive — the waveshaping creates crackling, unstable harmonics
|
|
103
|
+
- **Noise** through a modulated bandpass with fast LFO — crackling texture
|
|
104
|
+
- **Grain Delay** with random pitch and high spray — scattered, unpredictable particles
|
|
105
|
+
- **Redux** with sample rate modulation — digital "crackle"
|
|
106
|
+
|
|
107
|
+
### Electricity / Current
|
|
108
|
+
- **Frequency Shifter** in Ring mode at 50-60Hz — creates mains hum undertone
|
|
109
|
+
- **Erosion** Sine mode at power-line frequency (50 or 60Hz) — electric buzz
|
|
110
|
+
- **Roar** Gate mode — creates sparked, interrupted signal
|
|
111
|
+
- **Very fast LFO** (20-50 Hz) on anything — creates buzzing modulation at audio rate
|
|
112
|
+
- **Redux** at extreme settings (Bit 2, Sample 16x) — creates pure square wave buzz
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## Part 3: Musique Concrète in Ableton
|
|
117
|
+
|
|
118
|
+
The art of transforming recorded sounds into music. Schaeffer's principle: listen first, then manipulate.
|
|
119
|
+
|
|
120
|
+
### The Simpler Texture Workflow (Arca's Core Technique)
|
|
121
|
+
1. Load ANY audio into **Simpler** → switch to **Texture** mode
|
|
122
|
+
2. **Grain Size:** Minimum for glitchy fragmentation, maximum for smooth stretching
|
|
123
|
+
3. **Flux:** 0% = stable grains. 50-80% = organic random variation. 100% = complete chaos
|
|
124
|
+
4. **Transpose:** Extreme values (±12-24st) create alien transformations of familiar sources
|
|
125
|
+
5. Record the output as new audio → process further → repeat
|
|
126
|
+
6. Each generation of resampling creates something further from the source
|
|
127
|
+
|
|
128
|
+
### The Resampling Loop
|
|
129
|
+
1. Create a sound (any synth, any sample)
|
|
130
|
+
2. Process it (distortion, reverb, filter, spectral effects)
|
|
131
|
+
3. **Record the output** as new audio (resample)
|
|
132
|
+
4. Load the new audio back into Simpler or as a new clip
|
|
133
|
+
5. Process it differently
|
|
134
|
+
6. Repeat 3-5 times
|
|
135
|
+
7. By generation 3-4, the original source is unrecognizable — you have created something genuinely new
|
|
136
|
+
|
|
137
|
+
### Found Sound as Source Material
|
|
138
|
+
Any sound can become music:
|
|
139
|
+
- **Field recordings** → Spectral Resonator (pitched) → Reverb = environmental music
|
|
140
|
+
- **Voice recordings** → Simpler Texture mode → Grain Delay = alien vocal textures
|
|
141
|
+
- **Industrial noise** → Corpus (Membrane) → Auto Filter = pitched industrial percussion
|
|
142
|
+
- **Traffic sounds** → Spectral Blur → Resonators = urban drone
|
|
143
|
+
- **Kitchen sounds** → time-stretch 400% → filter → reverb = ambient textures
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## Part 4: Temporal Thinking — How Sounds Evolve
|
|
148
|
+
|
|
149
|
+
Sounds are not static objects. They exist in time. Think about their life cycle:
|
|
150
|
+
|
|
151
|
+
### The Attack Question
|
|
152
|
+
Every sound starts somewhere. How it starts defines how it's perceived:
|
|
153
|
+
- **Hard attack** (0-5ms) = percussive, present, aggressive
|
|
154
|
+
- **Soft attack** (50-200ms) = pad-like, background, gentle
|
|
155
|
+
- **Reverse attack** = ghostly, otherworldly — reverse the audio, add reverb, reverse back
|
|
156
|
+
- **Delayed attack** = sounds that "swell in" create anticipation
|
|
157
|
+
|
|
158
|
+
### The Sustain Question
|
|
159
|
+
What happens while the sound is sounding?
|
|
160
|
+
- **Static sustain** = boring (the #1 sound design mistake)
|
|
161
|
+
- **Modulated sustain** = alive — filter breathing, pitch drift, amplitude variation
|
|
162
|
+
- **Evolving sustain** = interesting — wavetable position sweep, FM amount change, harmonic shift
|
|
163
|
+
- **Dying sustain** = musical — filter slowly closing, volume slowly decreasing, harmonics fading
|
|
164
|
+
|
|
165
|
+
### The Release Question
|
|
166
|
+
How the sound ends is as important as how it starts:
|
|
167
|
+
- **Short release** = tight, controlled, punchy
|
|
168
|
+
- **Long release with reverb** = spacious, emotional
|
|
169
|
+
- **Release into delay** = the sound echoes after dying, extending its presence
|
|
170
|
+
- **Release into silence** = the most powerful ending. The absence of the sound is louder than the sound.
|
|
171
|
+
|
|
172
|
+
### The Macro Arc
|
|
173
|
+
Over minutes, not milliseconds:
|
|
174
|
+
- **Bar 1:** A sound is dark, filtered, distant
|
|
175
|
+
- **Bar 32:** The same sound has opened up slightly — filter 10% higher
|
|
176
|
+
- **Bar 64:** The sound is now present, clear — filter at 50%
|
|
177
|
+
- **Bar 96:** The sound reaches its peak — filter fully open, reverb reduced, presence maximized
|
|
178
|
+
- **Bar 128:** The sound begins to recede — filter closing, reverb increasing, drifting away
|
|
179
|
+
- **Bar 160:** The sound is a ghost — filtered, distant, barely there
|
|
180
|
+
- This is one sound telling a complete emotional story over 8 minutes. Deep minimal techno does this with EVERY element.
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## Part 5: Anti-Patterns — What NOT to Do
|
|
185
|
+
|
|
186
|
+
### The Preset Trap
|
|
187
|
+
Loading a preset and using it as-is produces generic music. ALWAYS change at least 3 parameters from any preset. The preset is a starting point, not a destination.
|
|
188
|
+
|
|
189
|
+
### The Effect Stack Trap
|
|
190
|
+
Adding more effects doesn't make a sound more interesting — it makes it more processed. Before adding an effect, ask: "What am I trying to achieve?" If you can't answer in one sentence, don't add it.
|
|
191
|
+
|
|
192
|
+
### The Volume Trap
|
|
193
|
+
Making things louder doesn't make them better. If a sound doesn't work at -12dB, it won't work at 0dB — it'll just be louder AND bad. Design the sound at low volume. If it's compelling quiet, it'll be devastating loud.
|
|
194
|
+
|
|
195
|
+
### The Complexity Trap
|
|
196
|
+
The most powerful sounds are often the simplest — a sine wave with the right envelope and the right context can be more moving than a 12-layer pad. SOPHIE's most iconic sounds were built from single oscillators with extreme processing. Long-form minimal techno builds 9-minute journeys from 4-5 elements.
|
|
197
|
+
|
|
198
|
+
### The Symmetry Trap
|
|
199
|
+
Perfect symmetry sounds artificial. Human music is asymmetric:
|
|
200
|
+
- Don't quantize everything to the grid
|
|
201
|
+
- Don't make left and right channels identical
|
|
202
|
+
- Don't make every bar the same length of filter sweep
|
|
203
|
+
- Don't make the release the same length as the attack
|
|
204
|
+
- Introduce tiny imperfections everywhere — that's what "organic" means
|
|
205
|
+
|
|
206
|
+
### The Reference Trap
|
|
207
|
+
Trying to copy another artist's sound exactly is a dead end. Instead:
|
|
208
|
+
1. Identify what QUALITY you admire (the warmth, the space, the aggression)
|
|
209
|
+
2. Identify what TECHNIQUE creates that quality
|
|
210
|
+
3. Apply the technique to YOUR source material with YOUR aesthetic
|
|
211
|
+
4. The result will be inspired by the reference but sound like you
|