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,140 @@
|
|
|
1
|
+
# Deep Sound Design — Techniques from the Masters
|
|
2
|
+
|
|
3
|
+
This is a reference for creative sound design thinking, not a recipe book. These are principles and techniques drawn from deep minimal, dub techno, and experimental electronic production. Use them as inspiration — adapt, combine, subvert.
|
|
4
|
+
|
|
5
|
+
## Philosophy: Sound Design IS Composition
|
|
6
|
+
|
|
7
|
+
In minimal and experimental electronic music, sound design and composition are the same thing. A filter sweep IS the melody. A reverb tail IS the harmony. Modulation IS the arrangement. The producer's job is not to write notes — it's to sculpt evolving textures.
|
|
8
|
+
|
|
9
|
+
**Minimal-techno principle:** A single sound source, properly modulated, IS a complete piece. The trick is making one thing do the work of ten.
|
|
10
|
+
|
|
11
|
+
**Basic Channel principle:** Space is an instrument. Delay and reverb are not effects — they are the composition itself.
|
|
12
|
+
|
|
13
|
+
**Richie Hawtin principle:** Subtraction is more powerful than addition. Remove one thing and the remaining elements become louder without touching a fader.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Technique Library
|
|
18
|
+
|
|
19
|
+
### 1. Micro-Modulation (Making Things Breathe)
|
|
20
|
+
|
|
21
|
+
The difference between "sounds like a computer" and "sounds alive" is modulation that operates below conscious perception.
|
|
22
|
+
|
|
23
|
+
**Filter breathing:** Assign an LFO at 0.1-0.5 Hz to a lowpass filter cutoff with a depth of 5-15%. The filter opens and closes like breathing. The listener doesn't hear "filter modulation" — they feel "organic movement."
|
|
24
|
+
|
|
25
|
+
**Oscillator drift:** Detune oscillators by 1-3 cents with slow LFO modulation (0.05-0.2 Hz). This creates the warmth of analog — tiny pitch instabilities that prevent digital sterility.
|
|
26
|
+
|
|
27
|
+
**Amplitude micro-variation:** Automate track volume with perlin/brownian noise at very low depth (±1-3 dB). Every bar sounds slightly different even with identical notes.
|
|
28
|
+
|
|
29
|
+
**Key insight:** If the listener can consciously hear the modulation, it's too much. The best modulation is felt, not heard.
|
|
30
|
+
|
|
31
|
+
### 2. Space as Composition (Dub Techniques)
|
|
32
|
+
|
|
33
|
+
In dub techno, reverb and delay are not decorations — they generate the harmonic and melodic content.
|
|
34
|
+
|
|
35
|
+
**The dub chord:** A short, dry chord stab fed into long delay (70-80% feedback) with a filter on the delay return. The delay tail becomes the pad. The filter on the return shapes the "melody" — slowly opening the filter on the delay return makes the chord brighten over time while the source stays dark.
|
|
36
|
+
|
|
37
|
+
**Reverb as harmony:** A single note hit fed into a reverb with 5-10s decay. The reverb tail becomes a drone that carries harmonic information. Modulating the reverb's pre-delay and diffusion creates the impression of harmonic movement.
|
|
38
|
+
|
|
39
|
+
**Delay throws:** Normally sends are set to a fixed level. A "throw" is a momentary spike — send level goes from 0 to 60-80% for half a beat, then back to 0. The element echoes into space and the echo fills the gap. Use this on snare, hats, vocal fragments. The throw IS the composition — it creates rhythmic space events.
|
|
40
|
+
|
|
41
|
+
**Feedback modulation:** Set delay feedback to 75-85% (near self-oscillation). Then modulate the delay time by ±5-10%. The pitch shifts create eerie, warped echoes — the signature Basic Channel sound.
|
|
42
|
+
|
|
43
|
+
### 3. Creative Sidechain (Beyond Pump)
|
|
44
|
+
|
|
45
|
+
Sidechain compression is not just for the kick-bass pump. It's a modulation source.
|
|
46
|
+
|
|
47
|
+
**Sidechain reverb from drums:** Route the dry drum signal to trigger sidechain compression on the reverb return. When drums hit, the reverb ducks. When drums are silent, the reverb fills the space. This creates rhythmic breathing in the entire reverb field — the room "pulses" with the groove.
|
|
48
|
+
|
|
49
|
+
**Sidechain everything from a ghost kick:** Create a muted kick track (no audio output). Use it as a sidechain source for pads, textures, atmospheres. This creates rhythmic ducking on elements that have no rhythmic content — they pulse with a phantom groove.
|
|
50
|
+
|
|
51
|
+
**Sidechain filter instead of volume:** Instead of ducking volume, use an envelope follower (from the kick) to modulate a filter cutoff on the pad. When the kick hits, the pad filter closes. When the kick releases, the pad opens. Subtler than volume ducking — the pad "brightens" between kicks instead of getting quieter.
|
|
52
|
+
|
|
53
|
+
**Multiband sidechain:** Only duck the low frequencies of a pad from the kick. The high frequencies stay constant — shimmer remains while the sub clears for the kick. Use Multiband Dynamics or an EQ before the compressor.
|
|
54
|
+
|
|
55
|
+
### 4. Textural Layering (Micro-Fragment Method)
|
|
56
|
+
|
|
57
|
+
Minimal-techno producers build textures by layering tiny, filtered, processed fragments — each one barely audible alone, together they create a living fabric.
|
|
58
|
+
|
|
59
|
+
**Grain technique:** Take a single percussion hit. Duplicate it 3-4 times. Process each copy differently — one through bit reduction, one through heavy reverb, one through a bandpass filter, one pitch-shifted. Pan them across the stereo field. Mix each at 15-25% of the original. The result: one "hit" that has depth, width, and organic irregularity.
|
|
60
|
+
|
|
61
|
+
**Noise sculpting:** White noise through a tight bandpass filter with slow LFO on the center frequency creates a "breathing" texture. Add this at -20dB under your main elements. It's the "air" in the room. Modulate the filter Q for moments of focus.
|
|
62
|
+
|
|
63
|
+
**Sample mangling:** Take a melodic sample. Time-stretch it to 200-400% length. This reveals the granular structure — artifacts become texture. Filter the result aggressively. Use what remains as an atmospheric layer.
|
|
64
|
+
|
|
65
|
+
### 5. Frequency Domain Thinking
|
|
66
|
+
|
|
67
|
+
Don't think about tracks — think about frequency bands. Each band is a voice in the mix.
|
|
68
|
+
|
|
69
|
+
**Sub (20-60 Hz):** One element only. Kick or bass, never both at the same time. Sidechain or frequency split to ensure they alternate.
|
|
70
|
+
|
|
71
|
+
**Low (60-200 Hz):** Bass body and kick impact. Keep this mono. This is where groove lives.
|
|
72
|
+
|
|
73
|
+
**Low-mid (200-500 Hz):** The "warmth" zone but also the "mud" zone. Be selective — only one or two elements should occupy this space at any time.
|
|
74
|
+
|
|
75
|
+
**Mid (500-2kHz):** Where most melodic/harmonic content sits. Filter pads to stay below 2kHz for depth. Bright melodic elements (leads) sit above 1kHz.
|
|
76
|
+
|
|
77
|
+
**High-mid (2-6kHz):** Presence and attack. Hi-hats, percussion transients, vocal presence. This is what makes things "cut through."
|
|
78
|
+
|
|
79
|
+
**High/Air (6-20kHz):** Shimmer and sparkle. Reverb tails, noise textures, cymbal sustain. Subtle modulation here creates "life."
|
|
80
|
+
|
|
81
|
+
**The frequency dance:** At any given moment, each frequency band should have one primary element. When the chord opens its filter into the highs, pull the hi-hat back. When the bass drops, the kick shortens. This is mix engineering as composition.
|
|
82
|
+
|
|
83
|
+
### 6. Organic Automation Shapes
|
|
84
|
+
|
|
85
|
+
Real producers don't draw straight lines or perfect curves. Their automation reflects human movement.
|
|
86
|
+
|
|
87
|
+
**Perlin noise:** Smooth, natural-looking randomness. Perfect for filter cutoff drift, send level breathing, oscillator detune. Sounds like "a hand on a knob."
|
|
88
|
+
|
|
89
|
+
**Brownian motion:** Random walk — each value is close to the previous one. Good for very slow parameter drift over 16-32 bars. Creates the feeling of gradual transformation.
|
|
90
|
+
|
|
91
|
+
**Exponential curves:** For build-ups and filter sweeps. Energy accumulates slowly at first, then accelerates. This is how tension works in music — the last 4 bars contain more change than the first 12.
|
|
92
|
+
|
|
93
|
+
**Asymmetric envelopes:** Fast attack, slow release on send throws. The element stabs into the reverb quickly, but the tail fades slowly. This is more musical than symmetric curves.
|
|
94
|
+
|
|
95
|
+
**Anti-quantize:** After drawing automation, add tiny random offsets (±0.05 beats) to the breakpoints. This prevents the automation from sounding "gridded."
|
|
96
|
+
|
|
97
|
+
### 7. The WTF Moment
|
|
98
|
+
|
|
99
|
+
Every great minimal track has 2-3 moments where something unexpected happens — a sound that doesn't belong, a brief disruption that breaks the hypnosis just enough to deepen it.
|
|
100
|
+
|
|
101
|
+
**Techniques:**
|
|
102
|
+
- Reverse a percussion hit for 1 bar before a section change
|
|
103
|
+
- Pitch-shift the entire master bus by ±2 semitones for 2 beats
|
|
104
|
+
- Suddenly remove ALL reverb for 4 beats — the room "dries up"
|
|
105
|
+
- Send one element to 100% delay feedback for 1 beat, creating a momentary pitch spiral
|
|
106
|
+
- Drop the tempo by 0.5 BPM for 16 bars, then return — subconscious tension
|
|
107
|
+
- Insert 1 bar of silence (mute master) — the most powerful "effect"
|
|
108
|
+
|
|
109
|
+
**Rules:**
|
|
110
|
+
- Maximum 3 WTF moments per 8-minute track
|
|
111
|
+
- Never repeat the same trick
|
|
112
|
+
- The WTF moment should last 2-8 beats — any longer and it becomes a section, not a moment
|
|
113
|
+
- After the WTF, return to exactly where you were — the contrast is what makes it powerful
|
|
114
|
+
|
|
115
|
+
### 8. Effects as Instruments
|
|
116
|
+
|
|
117
|
+
In experimental electronic music, effects chains ARE instruments.
|
|
118
|
+
|
|
119
|
+
**Self-oscillating filter:** Push a filter's resonance to the point where it starts ringing. Play notes by changing the cutoff frequency. The filter becomes a sine oscillator with natural overtones.
|
|
120
|
+
|
|
121
|
+
**Feedback loop instrument:** Route a track's output back to its own input through effects. Add a compressor to prevent runaway feedback. What you get is a living, evolving texture that responds to its own output. Add a gate to control when it speaks.
|
|
122
|
+
|
|
123
|
+
**Granular reverb:** Very short reverb (0.1-0.3s) with high diffusion on percussive sounds. The reverb doesn't add "space" — it smears the transient into a tonal cloud. The pitch of the cloud is determined by the reverb size.
|
|
124
|
+
|
|
125
|
+
**Convolution as synthesis:** Load a non-impulse-response file into a convolution reverb — a speech recording, a drum break, a synth pad. The "reverb" imprints the spectral character of that source onto whatever passes through it. A kick drum through a vocal convolution gains speech-like formants.
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Application Principles
|
|
130
|
+
|
|
131
|
+
When working on any track, think about these layers:
|
|
132
|
+
|
|
133
|
+
1. **Foundation:** What is the one element that defines this track? Protect it.
|
|
134
|
+
2. **Modulation:** What is moving? If nothing is moving, the track is dead.
|
|
135
|
+
3. **Space:** Where are things in the stereo field? What reverb/delay creates the "room"?
|
|
136
|
+
4. **Frequency balance:** At any moment, is every frequency band occupied by exactly one primary element?
|
|
137
|
+
5. **Surprise:** Where are the 2-3 WTF moments that break the hypnosis?
|
|
138
|
+
6. **Evolution:** Over 8 minutes, what changes? Not clip changes — parameter changes. The filter that opened 5% in the first minute is at 70% by minute 6.
|
|
139
|
+
|
|
140
|
+
**The test:** Mute any single track. If the track sounds empty, that element is doing too much. If the track sounds the same, that element isn't doing enough. Each element should be missed when removed but not dominant when present.
|
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
# Sound Design — Instruments, Effects & Recipes
|
|
2
|
+
|
|
3
|
+
Ableton Live's stock instruments and effects with key parameters, typical values, and sound design starting points. Use these as launch pads — every sound should be shaped by context.
|
|
4
|
+
|
|
5
|
+
## Stock Instruments
|
|
6
|
+
|
|
7
|
+
### Analog (Subtractive Synth)
|
|
8
|
+
Two oscillators + noise → two filters → two amplifiers. Classic analog-modeled subtractive synthesis.
|
|
9
|
+
|
|
10
|
+
**Key parameters:**
|
|
11
|
+
- `Osc1 Shape` / `Osc2 Shape` — Saw, Square/Pulse, Sine, Noise
|
|
12
|
+
- `Osc1 Octave` / `Osc2 Octave` — -3 to +3
|
|
13
|
+
- `Osc2 Detune` — Fine detune for thickness (-1.0 to 1.0 semitones)
|
|
14
|
+
- `Filter1 Type` — LP12, LP24, BP, HP, Notch
|
|
15
|
+
- `Filter1 Freq` — Cutoff frequency (20 Hz - 20 kHz)
|
|
16
|
+
- `Filter1 Res` — Resonance (0 to 1.0)
|
|
17
|
+
- `Fil1 Env Amount` — Filter envelope depth
|
|
18
|
+
- `Amp1 Attack` / `Decay` / `Sustain` / `Release` — ADSR envelope
|
|
19
|
+
- `LFO1 Rate` / `Amount` — Modulation speed and depth
|
|
20
|
+
|
|
21
|
+
### Wavetable (Wavetable Synth)
|
|
22
|
+
Two wavetable oscillators with continuous morphing, sub oscillator, and powerful modulation.
|
|
23
|
+
|
|
24
|
+
**Key parameters:**
|
|
25
|
+
- `Osc 1 Pos` — Wavetable position (0-1, morphs through waveforms)
|
|
26
|
+
- `Osc 1 Effect` — FM, Classic, Modern, formant effects on the wavetable
|
|
27
|
+
- `Sub Osc` — Sub oscillator (-2 to 0 octaves, sine/triangle)
|
|
28
|
+
- `Filter Type` — LP/HP/BP with various slopes
|
|
29
|
+
- `Filter Freq` — Cutoff
|
|
30
|
+
- `Filter Res` — Resonance
|
|
31
|
+
- `Mod Matrix` — Map any source (LFO, envelope, velocity, etc.) to any parameter
|
|
32
|
+
- `Unison Voices` — 1-8 voices for supersaw/thick sounds
|
|
33
|
+
- `Unison Amount` — Detune spread between voices
|
|
34
|
+
|
|
35
|
+
### Operator (FM Synth)
|
|
36
|
+
Four oscillators (operators) that can modulate each other's frequency. 11 algorithms define the routing.
|
|
37
|
+
|
|
38
|
+
**Key parameters:**
|
|
39
|
+
- `Algorithm` — Routing topology (1-11). Algorithm 1 = all serial (most harmonics). Algorithm 11 = all parallel (additive).
|
|
40
|
+
- `Osc A-D Coarse` — Frequency ratio (0.5, 1, 2, 3... harmonic ratios)
|
|
41
|
+
- `Osc A-D Level` — Output level / modulation amount
|
|
42
|
+
- `Osc A-D Waveform` — Sine, Saw, Square, Triangle, Noise
|
|
43
|
+
- `Filter Freq` / `Res` — Global filter
|
|
44
|
+
- `LFO Rate` / `Amount` — Vibrato, tremolo
|
|
45
|
+
- `ADSR per operator` — Each operator has its own envelope
|
|
46
|
+
|
|
47
|
+
### Drift (Analog-Modeled)
|
|
48
|
+
Simple, characterful analog synth with built-in instability and warmth.
|
|
49
|
+
|
|
50
|
+
**Key parameters:**
|
|
51
|
+
- `Shape` — Oscillator shape (continuous morph)
|
|
52
|
+
- `Drift` — Amount of analog-style instability
|
|
53
|
+
- `Filter` — Low-pass filter with resonance
|
|
54
|
+
- `Envelope` — Attack/Decay/Sustain/Release
|
|
55
|
+
- `Voice Mode` — Mono, Poly, Unison
|
|
56
|
+
- `Modulation` — Built-in LFO and envelope routing
|
|
57
|
+
|
|
58
|
+
### Simpler (Sample Player)
|
|
59
|
+
One-shot or looped sample playback with filter, envelope, LFO, and warp modes.
|
|
60
|
+
|
|
61
|
+
**Key parameters:**
|
|
62
|
+
- `Mode` — Classic (one-shot), One-Shot, Slicing
|
|
63
|
+
- `Start` / `End` — Sample region
|
|
64
|
+
- `Loop` — On/off, loop start/length
|
|
65
|
+
- `Filter Type` / `Freq` / `Res` — Sample filtering
|
|
66
|
+
- `Amp Envelope` — ADSR for amplitude
|
|
67
|
+
- `Warp` — Time-stretch sample to tempo
|
|
68
|
+
- `Voices` — Polyphony count
|
|
69
|
+
- `Spread` — Stereo spread for polyphonic voices
|
|
70
|
+
|
|
71
|
+
### Drum Rack
|
|
72
|
+
Container that maps samples/instruments to MIDI notes (pads). Each pad is a chain.
|
|
73
|
+
|
|
74
|
+
**Key concepts:**
|
|
75
|
+
- 128 pads (MIDI 0-127), typically using 36-51 (C1-D#2)
|
|
76
|
+
- **Choke groups**: Assign pads to same group — triggering one silences others (e.g., open/closed hi-hat)
|
|
77
|
+
- Each pad has its own chain: sample player + effects
|
|
78
|
+
- **Macro knobs**: 8 knobs that can control parameters across multiple chains
|
|
79
|
+
- Sends A/B per pad for internal effects routing
|
|
80
|
+
|
|
81
|
+
### Other Instruments
|
|
82
|
+
- **Sampler** — Advanced multi-sample instrument with zones, layers, modulation matrix
|
|
83
|
+
- **Tension** — Physical modeling of strings (pluck, bow, hammer)
|
|
84
|
+
- **Collision** — Physical modeling of mallet instruments (bars, membranes, plates)
|
|
85
|
+
- **Electric** — Electric piano modeling (tine, reed, pickup, damper)
|
|
86
|
+
- **Meld** — MPE-capable synth with two engines and a mixer
|
|
87
|
+
|
|
88
|
+
## Stock Audio Effects
|
|
89
|
+
|
|
90
|
+
### Dynamics
|
|
91
|
+
|
|
92
|
+
**Compressor**
|
|
93
|
+
- `Threshold` — Level where compression starts (dB)
|
|
94
|
+
- `Ratio` — Compression ratio (1:1 to inf:1)
|
|
95
|
+
- `Attack` — How fast compression engages (0.01-300ms)
|
|
96
|
+
- `Release` — How fast compression releases (1-3000ms)
|
|
97
|
+
- `Knee` — Soft/hard knee transition
|
|
98
|
+
- `Makeup` / `Output Gain` — Compensate for gain reduction
|
|
99
|
+
- `Sidechain` — External input for ducking (key for pumping effects)
|
|
100
|
+
- **Modes**: Peak, RMS, Expand, OTT-style multiband (Compressor modes)
|
|
101
|
+
|
|
102
|
+
**Glue Compressor**
|
|
103
|
+
Bus-style compressor modeled on classic mix bus compressors.
|
|
104
|
+
- `Threshold`, `Ratio` (2, 4, 10), `Attack`, `Release`
|
|
105
|
+
- `Range` — Limits maximum compression
|
|
106
|
+
- `Dry/Wet` — Parallel compression in one device
|
|
107
|
+
- **Best for**: Drum bus, mix bus, gluing groups together
|
|
108
|
+
|
|
109
|
+
**Limiter**
|
|
110
|
+
- `Gain` — Input gain before limiting
|
|
111
|
+
- `Ceiling` — Maximum output level
|
|
112
|
+
- `Release` — Auto or manual
|
|
113
|
+
- **Use for**: Final output protection, loudness maximizing
|
|
114
|
+
|
|
115
|
+
**Gate**
|
|
116
|
+
- `Threshold` — Level below which audio is muted
|
|
117
|
+
- `Attack` / `Hold` / `Release` — Gate timing
|
|
118
|
+
- `Return` — Hysteresis (how far below threshold to close)
|
|
119
|
+
- **Use for**: Removing bleed, tightening drums, creative gating
|
|
120
|
+
|
|
121
|
+
**Multiband Dynamics**
|
|
122
|
+
Three frequency bands, each with its own compressor/expander.
|
|
123
|
+
- `Low` / `Mid` / `High` — Frequency crossover points
|
|
124
|
+
- Per-band: `Threshold Above/Below`, `Ratio`, `Attack`, `Release`
|
|
125
|
+
- **Use for**: Mastering, de-essing, frequency-specific dynamics
|
|
126
|
+
|
|
127
|
+
### EQ & Filters
|
|
128
|
+
|
|
129
|
+
**EQ Eight**
|
|
130
|
+
8-band parametric EQ — the workhorse.
|
|
131
|
+
- Per band: `Frequency`, `Gain` (dB), `Q` (bandwidth)
|
|
132
|
+
- Filter types: LP, HP, Bell, Notch, Low Shelf, High Shelf
|
|
133
|
+
- Various slopes: 12dB, 24dB, 48dB per octave
|
|
134
|
+
- `Oversampling` — Reduce aliasing at high frequencies
|
|
135
|
+
|
|
136
|
+
**Auto Filter**
|
|
137
|
+
Resonant filter with LFO, envelope follower, and sidechain.
|
|
138
|
+
- `Filter Type` — LP/HP/BP/Notch, various slopes
|
|
139
|
+
- `Frequency` — Cutoff
|
|
140
|
+
- `Resonance` — Q factor
|
|
141
|
+
- `LFO Amount` / `Rate` / `Shape` — Filter movement
|
|
142
|
+
- `Envelope Amount` / `Attack` / `Release` — Envelope follower
|
|
143
|
+
- **Use for**: Sweeps, wobbles, auto-wah, rhythmic filtering
|
|
144
|
+
|
|
145
|
+
**Channel EQ**
|
|
146
|
+
Simple 3-band EQ for quick tonal shaping.
|
|
147
|
+
- `Low`, `Mid`, `High` — Gain knobs
|
|
148
|
+
- `Mid Freq` — Sweepable mid frequency
|
|
149
|
+
|
|
150
|
+
### Time-Based
|
|
151
|
+
|
|
152
|
+
**Reverb**
|
|
153
|
+
- `Decay Time` — Reverb tail length (0.2-60s)
|
|
154
|
+
- `Pre Delay` — Delay before reverb starts (0-500ms)
|
|
155
|
+
- `Room Size` — Early reflection size
|
|
156
|
+
- `Diffusion` — Density of reflections
|
|
157
|
+
- `High/Low Cut` — EQ the reverb tail
|
|
158
|
+
- `Dry/Wet` — Mix (100% wet on return tracks)
|
|
159
|
+
- `Freeze` — Infinite sustain of current reverb
|
|
160
|
+
- **Types**: Room (short, 0.5-1.5s), Hall (medium, 1.5-4s), Cathedral (long, 4-10s+)
|
|
161
|
+
|
|
162
|
+
**Delay**
|
|
163
|
+
- `Time Left/Right` — Delay time (sync or ms)
|
|
164
|
+
- `Feedback` — How much repeats (0-100%)
|
|
165
|
+
- `Filter` — LP/HP on feedback path
|
|
166
|
+
- `Dry/Wet` — Mix
|
|
167
|
+
- `Ping Pong` — Alternates between L/R
|
|
168
|
+
- **Common sync values**: 1/4, 1/8, 3/16 (dotted eighth), 1/4T (triplet)
|
|
169
|
+
|
|
170
|
+
**Echo** (combines delay + reverb + modulation)
|
|
171
|
+
- `Left/Right Time` — Delay times
|
|
172
|
+
- `Feedback` — Repeat amount
|
|
173
|
+
- `Reverb Level` — Built-in reverb
|
|
174
|
+
- `Modulation` — Chorus-like movement in delay
|
|
175
|
+
- `Ducking` — Delays get quieter when input is playing
|
|
176
|
+
- `Gate` — Rhythmic gating of the echo tail
|
|
177
|
+
|
|
178
|
+
### Distortion & Saturation
|
|
179
|
+
|
|
180
|
+
**Saturator**
|
|
181
|
+
- `Drive` — Amount of saturation
|
|
182
|
+
- `Curve Type` — Analog Clip, Soft Sine, Medium Curve, Hard Curve, Sinoid Fold, Digital Clip
|
|
183
|
+
- `Output` — Compensate volume
|
|
184
|
+
- `Dry/Wet` — Parallel blend
|
|
185
|
+
- **Soft Sine**: Warm, subtle. **Sinoid Fold**: Aggressive harmonics. **Analog Clip**: Tape-like.
|
|
186
|
+
|
|
187
|
+
**Overdrive**
|
|
188
|
+
- `Drive` — Distortion amount
|
|
189
|
+
- `Tone` — Brightness
|
|
190
|
+
- `Dynamics` — Preserves or compresses dynamics
|
|
191
|
+
- **Use for**: Guitar-amp style warmth, bass grit
|
|
192
|
+
|
|
193
|
+
**Erosion**
|
|
194
|
+
- Adds digital artifacts: noise, sine wave modulation
|
|
195
|
+
- `Amount`, `Frequency`, `Width`
|
|
196
|
+
- **Use for**: Lo-fi, bitcrushed textures, digital degradation
|
|
197
|
+
|
|
198
|
+
**Redux**
|
|
199
|
+
- `Downsample` — Reduces sample rate (aliasing)
|
|
200
|
+
- `Bit Reduction` — Reduces bit depth (quantization noise)
|
|
201
|
+
- **Use for**: 8-bit sounds, lo-fi, retro textures
|
|
202
|
+
|
|
203
|
+
### Modulation
|
|
204
|
+
|
|
205
|
+
**Chorus-Ensemble**
|
|
206
|
+
- `Rate 1/2` — LFO speeds
|
|
207
|
+
- `Amount 1/2` — Modulation depths
|
|
208
|
+
- `Feedback` — Flanging intensity
|
|
209
|
+
- `Dry/Wet` — Mix
|
|
210
|
+
- **Use for**: Thickening, stereo width, classic chorus
|
|
211
|
+
|
|
212
|
+
**Phaser-Flanger**
|
|
213
|
+
- `Rate` — LFO speed
|
|
214
|
+
- `Amount` — Modulation depth
|
|
215
|
+
- `Feedback` — Intensity/resonance
|
|
216
|
+
- **Phaser**: Sweeping notches. **Flanger**: Jet/whoosh effect.
|
|
217
|
+
|
|
218
|
+
**Shifter** (renamed from Frequency Shifter in Live 12)
|
|
219
|
+
- `Frequency` — Shift amount in Hz (not semitones — inharmonic)
|
|
220
|
+
- `Drive` — Input gain
|
|
221
|
+
- `Dry/Wet` — Mix
|
|
222
|
+
- **Use for**: Metallic textures, detuned unease, ring-mod effects
|
|
223
|
+
- **Browser name**: `Shifter` (use this with `find_and_load_device`)
|
|
224
|
+
|
|
225
|
+
### Utility
|
|
226
|
+
|
|
227
|
+
**Utility**
|
|
228
|
+
Essential for mixing — should be on every track during mix.
|
|
229
|
+
- `Gain` — Volume trim (-inf to +35dB)
|
|
230
|
+
- `Width` — Stereo width (0=mono, 100=normal, 200=wide)
|
|
231
|
+
- `Bass Mono` — Make frequencies below X Hz mono
|
|
232
|
+
- `Bass Mono Freq` — Cutoff for mono bass (typically 120-200 Hz)
|
|
233
|
+
- `Mute` — Kill switch
|
|
234
|
+
- `Phase Invert L/R` — Flip phase
|
|
235
|
+
- `Channel Mode` — Left, Right, Both, Swap
|
|
236
|
+
|
|
237
|
+
## Sound Design Recipes
|
|
238
|
+
|
|
239
|
+
These are starting points — load the instrument with `find_and_load_device`, then use `batch_set_parameters` to set values. Always `get_device_parameters` first to see exact parameter names.
|
|
240
|
+
|
|
241
|
+
### Sub Bass (Analog)
|
|
242
|
+
Deep, clean low-end foundation.
|
|
243
|
+
```
|
|
244
|
+
Oscillator 1: Sine wave
|
|
245
|
+
Oscillator 2: Off
|
|
246
|
+
Filter: LP24, cutoff ~200 Hz, no resonance
|
|
247
|
+
Amp Envelope: Attack 0ms, Decay 0ms, Sustain 100%, Release 100ms
|
|
248
|
+
Note range: C0-C2 (MIDI 24-48)
|
|
249
|
+
```
|
|
250
|
+
- Mono mode (one voice)
|
|
251
|
+
- Velocity sensitivity low/off for consistent level
|
|
252
|
+
|
|
253
|
+
### Reese Bass (Analog or Wavetable)
|
|
254
|
+
Thick, detuned, evolving bass for DnB/dubstep.
|
|
255
|
+
```
|
|
256
|
+
Oscillator 1: Saw wave
|
|
257
|
+
Oscillator 2: Saw wave, detune +5-15 cents
|
|
258
|
+
Filter: LP24, cutoff ~500 Hz, resonance 20%
|
|
259
|
+
Filter Envelope: moderate amount, medium attack (50-200ms)
|
|
260
|
+
Unison: 2-4 voices, moderate spread
|
|
261
|
+
```
|
|
262
|
+
- Automate filter cutoff for movement
|
|
263
|
+
- Layer with clean sub (separate track) for low-end clarity
|
|
264
|
+
|
|
265
|
+
### Pad (Wavetable or Analog)
|
|
266
|
+
Warm, evolving background texture.
|
|
267
|
+
```
|
|
268
|
+
Oscillator: Soft wavetable or saw + triangle
|
|
269
|
+
Unison: 4-8 voices, wide spread
|
|
270
|
+
Filter: LP, cutoff ~2 kHz, low resonance
|
|
271
|
+
Amp Envelope: Attack 200-800ms, Decay 0, Sustain 100%, Release 500-2000ms
|
|
272
|
+
LFO → Filter Cutoff: slow rate (0.1-0.5 Hz), subtle amount
|
|
273
|
+
```
|
|
274
|
+
- Add Chorus-Ensemble for extra width
|
|
275
|
+
- Add Reverb (hall, 3-5s decay, 30-50% wet)
|
|
276
|
+
- Velocity → filter cutoff for expressiveness
|
|
277
|
+
|
|
278
|
+
### Pluck (Analog or Wavetable)
|
|
279
|
+
Short, percussive melodic sound.
|
|
280
|
+
```
|
|
281
|
+
Oscillator: Saw or square
|
|
282
|
+
Filter: LP24, cutoff ~1 kHz, moderate resonance (30-50%)
|
|
283
|
+
Filter Envelope: Amount high, Attack 0, Decay 100-300ms, Sustain 0%, Release 50ms
|
|
284
|
+
Amp Envelope: Attack 0, Decay 200-400ms, Sustain 0%, Release 100ms
|
|
285
|
+
```
|
|
286
|
+
- Short decay = harp-like. Longer decay = guitar-like.
|
|
287
|
+
- Add short reverb (room, 0.5-1s) for space
|
|
288
|
+
|
|
289
|
+
### Lead (Analog or Operator)
|
|
290
|
+
Cutting melodic line that sits on top of the mix.
|
|
291
|
+
```
|
|
292
|
+
Oscillator: Square or saw
|
|
293
|
+
Filter: LP or BP, cutoff ~3 kHz, moderate resonance
|
|
294
|
+
Amp Envelope: Attack 5-20ms, Decay 200ms, Sustain 70%, Release 200ms
|
|
295
|
+
Portamento/Glide: On (50-100ms) for mono mode
|
|
296
|
+
```
|
|
297
|
+
- Add Delay (1/8 or dotted 1/8, 30% feedback, 20% wet)
|
|
298
|
+
- Add subtle Reverb (plate, 1-2s)
|
|
299
|
+
- Use Saturator lightly for presence
|
|
300
|
+
|
|
301
|
+
### Supersaw (Wavetable)
|
|
302
|
+
Classic trance/EDM lead/pad.
|
|
303
|
+
```
|
|
304
|
+
Oscillator: Saw wavetable
|
|
305
|
+
Unison: 7-8 voices
|
|
306
|
+
Unison Amount: High (wide detune)
|
|
307
|
+
Filter: LP, cutoff ~5 kHz, low resonance
|
|
308
|
+
Amp Envelope: Attack 2ms, Sustain 100%, Release 300ms
|
|
309
|
+
```
|
|
310
|
+
- Layer with sub sine one octave below
|
|
311
|
+
- Chorus or Ensemble for extra width
|
|
312
|
+
- Stereo Delay (1/8 L, dotted 1/8 R)
|
|
313
|
+
|
|
314
|
+
### Texture / Ambient (Wavetable + Effects)
|
|
315
|
+
Evolving atmospheric sound.
|
|
316
|
+
```
|
|
317
|
+
Oscillator: Complex wavetable, automate position slowly
|
|
318
|
+
Filter: BP, slowly sweeping frequency
|
|
319
|
+
Amp Envelope: Slow attack (500ms-2s), long release (3-5s)
|
|
320
|
+
LFO: Multiple slow LFOs mapped to position, filter, pitch (subtle)
|
|
321
|
+
```
|
|
322
|
+
- Heavy Reverb (5-10s decay, high diffusion, 80-100% wet)
|
|
323
|
+
- Delay with high feedback (60-80%), filtered
|
|
324
|
+
- Shifter at very small values (+/- 1-5 Hz) for movement
|
|
325
|
+
- Grain Delay for granular textures
|
|
326
|
+
|
|
327
|
+
### 808 Bass (Simpler or Drum Rack)
|
|
328
|
+
Pitched sub with distortion for trap/hip-hop.
|
|
329
|
+
```
|
|
330
|
+
Sample: 808 kick or sine with fast pitch envelope
|
|
331
|
+
Amp Envelope: Attack 0, Decay 1-3s (long tail), Sustain 0%
|
|
332
|
+
Tuning: Tune to song key
|
|
333
|
+
```
|
|
334
|
+
- Add Saturator (soft sine or analog clip) for upper harmonics
|
|
335
|
+
- Set Simpler to mono
|
|
336
|
+
- Duration determines how long the 808 rings
|
|
337
|
+
|
|
338
|
+
## Device Chain Patterns
|
|
339
|
+
|
|
340
|
+
### Standard Insert Chain (on a track)
|
|
341
|
+
```
|
|
342
|
+
EQ Eight (surgical cuts) → Compressor → Saturator (subtle) → EQ Eight (tonal shaping) → Utility (final trim)
|
|
343
|
+
```
|
|
344
|
+
|
|
345
|
+
### Vocal Chain
|
|
346
|
+
```
|
|
347
|
+
EQ Eight (HP at 80 Hz, cut mud at 300 Hz) → Compressor (4:1, medium attack) → De-esser (Multiband Dynamics, high band) → EQ Eight (presence boost at 3-5 kHz) → Reverb (20-30% wet, plate)
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
### Drum Bus Chain
|
|
351
|
+
```
|
|
352
|
+
EQ Eight (HP at 30 Hz) → Glue Compressor (4:1, 10ms attack, 100ms release) → Saturator (subtle drive for warmth) → Utility (trim)
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
### Parallel Compression Setup
|
|
356
|
+
Using Audio Effect Rack:
|
|
357
|
+
- Chain A: Dry (no processing)
|
|
358
|
+
- Chain B: Compressor (heavy — 10:1, fast attack, fast release, low threshold) → balance chain volume
|
|
359
|
+
|
|
360
|
+
Or using Return track:
|
|
361
|
+
1. `create_return_track` for parallel compression
|
|
362
|
+
2. Add Compressor with extreme settings on the return
|
|
363
|
+
3. Use `set_track_send` to feed signal to the return
|
|
364
|
+
4. Blend return level to taste
|
|
365
|
+
|
|
366
|
+
### Sidechain Ducking Setup
|
|
367
|
+
1. Load Compressor on the track to be ducked (bass, pads)
|
|
368
|
+
2. Enable Sidechain in Compressor
|
|
369
|
+
3. Route kick track to sidechain input
|
|
370
|
+
4. Settings: Ratio 4:1-inf:1, Attack 0.1ms, Release 50-200ms, Threshold low
|
|
371
|
+
5. Adjust release to match tempo (longer for slower tempos)
|
|
372
|
+
|
|
373
|
+
## Creative Effects Techniques
|
|
374
|
+
|
|
375
|
+
### Reverb Freeze
|
|
376
|
+
Set Reverb's Freeze parameter to capture and infinitely sustain the current sound. Automate on/off for dramatic transitions.
|
|
377
|
+
|
|
378
|
+
### Delay Feedback Washes
|
|
379
|
+
Automate Delay feedback above 100% briefly — the delay builds and self-oscillates. Pull back before it gets out of control. Great for transitions.
|
|
380
|
+
|
|
381
|
+
### Beat Repeat (Stock Effect)
|
|
382
|
+
Repeats/stutters incoming audio rhythmically.
|
|
383
|
+
- `Grid` — Repeat size (1/4 to 1/32)
|
|
384
|
+
- `Chance` — Probability of repeating
|
|
385
|
+
- `Gate` — How long the repeat runs
|
|
386
|
+
- Great for glitch, fills, and transitions
|
|
387
|
+
|
|
388
|
+
### Grain Delay
|
|
389
|
+
Granular delay that can pitch-shift and scatter audio.
|
|
390
|
+
- `Pitch` — Transpose the grains
|
|
391
|
+
- `Spray` — Randomize grain position
|
|
392
|
+
- `Frequency` — Grain rate
|
|
393
|
+
- Great for ambient textures and otherworldly effects
|