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,243 @@
|
|
|
1
|
+
# Synthesizer Instruments — Deep Parameter Knowledge
|
|
2
|
+
|
|
3
|
+
## Wavetable
|
|
4
|
+
|
|
5
|
+
Wavetable is Live's most versatile synth. Two oscillators scan through wavetable positions, each with independent effects, filtered through two analog-modeled filters, modulated by three envelopes, two LFOs, and MIDI sources.
|
|
6
|
+
|
|
7
|
+
### Core Sound Design Parameters
|
|
8
|
+
|
|
9
|
+
**Osc Position (Osc 1 Pos / Osc 2 Pos):** The most important parameter. Sweeping through the wavetable creates timbral evolution — this IS the sound design. Automate this with a slow LFO (0.05-0.3 Hz) for evolving pads. For aggressive sounds, use fast LFO (2-8 Hz) with high depth.
|
|
10
|
+
|
|
11
|
+
**Osc Effect 1 / Effect 2:** These transform the wavetable in real-time:
|
|
12
|
+
- **FM (Frequency Modulation):** Adds harmonics and metallic overtones. Low values (5-15%) add subtle complexity. High values (50%+) create aggressive, digital textures. Modulate with an envelope for plucky FM bass.
|
|
13
|
+
- **Classic:** Phase distortion — fattens the sound without adding harsh harmonics. Good for warm pads (10-30%).
|
|
14
|
+
- **Modern:** Waveshaping distortion — more aggressive than Classic. Good for leads and bass (20-50%).
|
|
15
|
+
- **Sync:** Hard sync effect — creates screaming, tearing overtones when swept. Classic for aggressive leads.
|
|
16
|
+
|
|
17
|
+
**Filter 1 Freq / Filter 2 Freq:** Lowpass is the default. Key insight: use Filter 1 as lowpass and Filter 2 as highpass simultaneously (parallel routing) for bandpass-like resonant sounds. Or use split mode to send each oscillator through its own filter.
|
|
18
|
+
|
|
19
|
+
**Filter Circuit types:** Each emulates specific analog hardware:
|
|
20
|
+
- **Clean:** Transparent, precise. Good for surgical work.
|
|
21
|
+
- **OSR:** Emulates an MS-20 style filter — aggressive, screamy when resonance is high. Great for acid-style sounds.
|
|
22
|
+
- **MS2:** Another MS-20 variant, slightly different character.
|
|
23
|
+
- **SMP:** Sallen-Key topology — warm, rounded. Classic for pads.
|
|
24
|
+
- **PRD:** Ladder filter emulation — creamy, musical. Classic for bass.
|
|
25
|
+
|
|
26
|
+
**Unison modes:** Six types, each dramatically different:
|
|
27
|
+
- **Classic:** Standard detuned voices — instant width and fatness.
|
|
28
|
+
- **Shimmer:** Subtle pitch randomization — ethereal, glassy quality.
|
|
29
|
+
- **Noise:** Adds noise to each voice — gritty, textured.
|
|
30
|
+
- **Phase Sync:** Voices sync phases — hollow, metallic.
|
|
31
|
+
- **Position Spread:** Each voice reads a different wavetable position — creates a choir-like spread. VERY powerful for evolving textures.
|
|
32
|
+
- **Random:** Each note has slightly different characteristics — organic, alive.
|
|
33
|
+
|
|
34
|
+
### Creative Applications
|
|
35
|
+
|
|
36
|
+
**Evolving dub pad (minimal-techno style):**
|
|
37
|
+
- Osc 1: "Basic Shapes" wavetable, Position 25%, Effect 1 = Classic at 15%
|
|
38
|
+
- Osc 2: "Vintage" wavetable, Position 60%, Effect 1 = FM at 8%
|
|
39
|
+
- Filter 1: Lowpass, Freq 35-45%, Res 15-25%, Circuit = SMP
|
|
40
|
+
- LFO 1 → Osc 1 Pos at 20%, Rate 0.15 Hz (breathing wavetable)
|
|
41
|
+
- LFO 2 → Filter 1 Freq at 10%, Rate 0.08 Hz (filter drift)
|
|
42
|
+
- Unison: Position Spread, Amount 30-40%
|
|
43
|
+
- Env 1 attack: 500ms-2s for slow pad entrance
|
|
44
|
+
|
|
45
|
+
**SOPHIE-style metallic bass:**
|
|
46
|
+
- Osc 1: "Digital" wavetable, Position 80%+, Effect 1 = Sync at 70%
|
|
47
|
+
- Filter 1: Lowpass, Freq 55%, Res 70%+, Circuit = OSR
|
|
48
|
+
- Short attack, medium decay, low sustain — plucky character
|
|
49
|
+
- Pitch envelope: +12 to +24 semitones, 30-60ms decay — the "zap"
|
|
50
|
+
- Post-processing: Saturator (Sinoid Fold at 60%) → Erosion (Wide Noise)
|
|
51
|
+
|
|
52
|
+
**Aphex Twin glitch texture:**
|
|
53
|
+
- Osc 1: "Noise" wavetable category, random position
|
|
54
|
+
- Effect 1 = FM at 40-60%, modulated by Env 2 with fast decay
|
|
55
|
+
- Filter: Bandpass, high resonance (70%+), freq modulated by fast LFO (4-12 Hz)
|
|
56
|
+
- Very short notes (32nd, 64th) with random velocity
|
|
57
|
+
- Unison: Noise mode, Amount 50%+
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Drift
|
|
62
|
+
|
|
63
|
+
Drift is designed for organic, analog-sounding synthesis. Its standout feature is the **Drift** parameter — built-in oscillator instability that adds analog warmth automatically. Two oscillators, one noise generator, one filter, one LFO, one cyclic envelope, two standard envelopes.
|
|
64
|
+
|
|
65
|
+
### Core Sound Design Parameters
|
|
66
|
+
|
|
67
|
+
**Drift (0-100%):** The signature parameter. At 0% it's perfectly digital. At 25-35% it sounds like a well-maintained analog synth. At 50-70% it sounds like a temperamental vintage unit. At 100% it's beautifully unstable — each note is slightly different. For minimal techno, 35-55% is the sweet spot.
|
|
68
|
+
|
|
69
|
+
**Osc 1 Wave:** Sine, Triangle, Saw, Square, Pulse, PWM (pulse width modulation), Noise. The Saw and Pulse waves are the bread and butter. PWM with slow shape modulation creates classic analog pad movement.
|
|
70
|
+
|
|
71
|
+
**Osc 1 Shape (0-100%):** Morphs the wave shape continuously. For Saw, it adds even harmonics (warmer). For Pulse, it changes pulse width. Automate this with the cyclic envelope for timbral evolution.
|
|
72
|
+
|
|
73
|
+
**Shape Mod Amt:** How much the LFO or cyclic envelope modulates the shape. At 5-15%, it's subtle organic movement. At 30-50%, it's obvious PWM-style modulation. At 70%+, it's aggressive waveshaping.
|
|
74
|
+
|
|
75
|
+
**LP Freq / LP Reso:** Single lowpass filter. Key insight: Drift's filter has two "types" (I and II) that sound quite different. Type I is smoother, Type II has more resonance character. For dub techno, Type I at medium-low freq (200-500 Hz) with moderate resonance (25-40%).
|
|
76
|
+
|
|
77
|
+
**LP Mod Amt 1 / LP Mod Amt 2:** How much Env 2 and the LFO modulate the filter. This is where the character lives. High Env 2 modulation = plucky, percussive. High LFO modulation = rhythmic filter movement.
|
|
78
|
+
|
|
79
|
+
**Cyclic Envelope:** A unique feature — a looping envelope that creates rhythmic or pseudo-random modulation. At low rates (0.1-1 Hz) it adds slow organic movement. At higher rates (2-20 Hz) it creates tremolo or rhythmic pulsing.
|
|
80
|
+
|
|
81
|
+
**Thickness / Strength / Spread:** Voice stacking parameters:
|
|
82
|
+
- **Thickness:** Adds detuned copies — instant fatness (20-40% for pads)
|
|
83
|
+
- **Strength:** How aggressively the thickness voices detune (10-25% for subtle, 40%+ for aggressive)
|
|
84
|
+
- **Spread:** Stereo width of the thickness voices (30-60% for natural width)
|
|
85
|
+
|
|
86
|
+
**Noise Gain:** Adding noise at very low levels (-30 to -40 dB) creates the impression of "air" and vintage character without muddying the mix.
|
|
87
|
+
|
|
88
|
+
### Creative Applications
|
|
89
|
+
|
|
90
|
+
**Deep minimal techno stab:**
|
|
91
|
+
- Osc 1: Saw, Shape 20%, Drift 40%
|
|
92
|
+
- Osc 2: Sine, -1 octave, slight detune (+2-3 cents) for sub weight
|
|
93
|
+
- Filter: Type I, Freq 400 Hz, Reso 30%
|
|
94
|
+
- Env 2: Fast attack, short decay (80-150ms), low sustain → LP Mod Amt 1 at 50%
|
|
95
|
+
- Result: Short, dark, characterful stab that changes slightly every time (thanks to Drift)
|
|
96
|
+
|
|
97
|
+
**Organic atmospheric pad:**
|
|
98
|
+
- Osc 1: PWM wave, Shape 40%, Shape Mod 20%
|
|
99
|
+
- Osc 2: Triangle, -1 octave for depth
|
|
100
|
+
- Drift: 55% (very analog, each note is unique)
|
|
101
|
+
- LFO: 0.12 Hz, Amount 35% → filter
|
|
102
|
+
- Cyclic Env: 0.3 Hz, Tilt 60% → shape mod
|
|
103
|
+
- Noise: -35 dB (barely there, adds air)
|
|
104
|
+
- Thickness 30%, Spread 50%
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Analog
|
|
109
|
+
|
|
110
|
+
Two oscillators, two filters, two amplifiers, two LFOs — a classic subtractive architecture that mirrors real analog polysynths. Each section (osc/filter/amp) has its own envelope.
|
|
111
|
+
|
|
112
|
+
### Core Sound Design Parameters
|
|
113
|
+
|
|
114
|
+
**Oscillator Shapes:** Sine, Saw, Square/Pulse, Noise per oscillator. Key insight: enabling **both** oscillators and setting them to slightly different tunings creates instant width and depth. Classic technique: Osc 1 = Saw, Osc 2 = Saw detuned +3-7 cents.
|
|
115
|
+
|
|
116
|
+
**Sub/Sync modes:**
|
|
117
|
+
- **Sub:** Osc 2 generates a sub-octave — instant bass weight
|
|
118
|
+
- **Sync:** Osc 1 hard-syncs to Osc 2 — classic screaming sync sound when you sweep Osc 1's coarse frequency
|
|
119
|
+
|
|
120
|
+
**Filter (F1/F2):** Each has 10 types including LP12, LP24, HP12, HP24, BP, Notch, and various drive types (Sym1, Sym2, Asym). The drive types add different saturation characters:
|
|
121
|
+
- **Off:** Clean, transparent
|
|
122
|
+
- **Sym1:** Gentle soft clipping — warm
|
|
123
|
+
- **Sym2:** Harder clipping — crunchy
|
|
124
|
+
- **Asym:** Asymmetric clipping — even harmonics, tube-like warmth
|
|
125
|
+
|
|
126
|
+
**F1 Freq < Env / F1 Freq < LFO:** Filter modulation sources. Key: the filter envelope amount goes from -1 to +1. Negative values make the filter close on attack (unusual but useful for reversed-sounding plucks).
|
|
127
|
+
|
|
128
|
+
**Glide:** Portamento between notes. Essential for 808-style bass slides. 10-20% for subtle, 30-50% for obvious glide. Enable **Legato** so glide only happens when notes overlap.
|
|
129
|
+
|
|
130
|
+
### Creative Applications
|
|
131
|
+
|
|
132
|
+
**808 bass from scratch:**
|
|
133
|
+
- Osc 1: Sine, Octave -1 (or -2 for very deep sub)
|
|
134
|
+
- Osc 2: Sine, Octave -2, Mode = Sub
|
|
135
|
+
- F1: LP24, Sym2 drive, Freq 28% (≈190 Hz)
|
|
136
|
+
- F1 Freq < Env: 30-40% (pluck character)
|
|
137
|
+
- FEG: Fast attack, short decay (150-250ms), low sustain
|
|
138
|
+
- AEG: Fast attack, long decay (1.5-3s), medium sustain
|
|
139
|
+
- Voices: 1 (mono), Glide ON at 15%
|
|
140
|
+
- Post: Saturator → Pedal (Fuzz at 30%) for harmonics and grit
|
|
141
|
+
|
|
142
|
+
**Acid bass (303 style):**
|
|
143
|
+
- Osc 1: Saw (or Square for hollow variant)
|
|
144
|
+
- F1: LP24, OSR circuit if available (or Sym2 for aggressive), Freq 30%, Reso 65%+
|
|
145
|
+
- F1 Freq < Env: 60-80% (the acid squelch)
|
|
146
|
+
- FEG: Zero attack, very short decay (30-80ms), zero sustain
|
|
147
|
+
- Accent via velocity → filter cutoff mapping
|
|
148
|
+
- Voices: 1 (mono), Legato ON, Glide 20%
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Operator
|
|
153
|
+
|
|
154
|
+
Four-oscillator FM synth. Each oscillator can be a carrier (audible) or modulator (shapes another oscillator). 11 algorithms determine the routing. Also includes a filter and LFO.
|
|
155
|
+
|
|
156
|
+
### Core Concept: FM Synthesis
|
|
157
|
+
|
|
158
|
+
FM synthesis creates complex timbres from simple waveforms by modulating one oscillator's frequency with another. The **ratio** between modulator and carrier determines the harmonic content:
|
|
159
|
+
- Integer ratios (1:1, 2:1, 3:1) = harmonic, musical sounds
|
|
160
|
+
- Non-integer ratios (1:1.41, 3:2.7) = inharmonic, metallic, bell-like sounds
|
|
161
|
+
|
|
162
|
+
The **modulator level** (Osc B/C/D Level when they modulate Osc A) determines intensity:
|
|
163
|
+
- 0-20%: Subtle timbral coloring
|
|
164
|
+
- 20-50%: Clear FM character, metallic harmonics
|
|
165
|
+
- 50-80%: Aggressive, complex, potentially harsh
|
|
166
|
+
- 80-100%: Extreme, noisy, glitchy
|
|
167
|
+
|
|
168
|
+
### Core Sound Design Parameters
|
|
169
|
+
|
|
170
|
+
**Algorithm:** Determines which oscillators modulate which. Key algorithms:
|
|
171
|
+
- **Alg 1:** D→C→B→A (serial) — maximum complexity, each modulator stacks
|
|
172
|
+
- **Alg 7:** All four independent carriers — additive synthesis, organ-like
|
|
173
|
+
- **Alg 3:** Two pairs (C→A, D→B) — two independent FM voices, good for layering
|
|
174
|
+
- **Alg 11:** Three modulators into one carrier — most extreme FM
|
|
175
|
+
|
|
176
|
+
**Osc Coarse/Fine tuning:** The ratio control. Setting Osc B Coarse to 2, 3, 4 creates harmonic FM. Setting it to 1.41 or 7.13 creates metallic/bell timbres. The Fine tune (0-1000) allows micro-detuning for beating and organic quality.
|
|
177
|
+
|
|
178
|
+
**Feedback (per oscillator):** Self-modulation — the oscillator modulates itself. Low values (5-15%) add warmth and body. High values (30-50%) add noise and grit. Very high values (70%+) create noise generators.
|
|
179
|
+
|
|
180
|
+
**Pitch Envelope:** Essential for electronic sounds. A pitch drop on the carrier creates kick drums (Amount 100%, Peak +24st, Decay 15-50ms). A pitch rise on a modulator creates zaps and laser sounds.
|
|
181
|
+
|
|
182
|
+
**Filter:** Operator's filter is the same engine as Wavetable's — Clean, OSR, MS2, SMP, PRD circuits. Using it after FM synthesis tames harsh harmonics while keeping character.
|
|
183
|
+
|
|
184
|
+
**Tone:** Global brightness control (0-100%). At 50% it's neutral. Below 50% it progressively filters high harmonics (warmer). Above 50% it boosts presence. Quick way to shape without touching the filter.
|
|
185
|
+
|
|
186
|
+
### Creative Applications
|
|
187
|
+
|
|
188
|
+
**Glitch percussion (Autechre style):**
|
|
189
|
+
- Algorithm 1 (serial): D→C→B→A
|
|
190
|
+
- Osc A: Sine 8bit wave, Coarse 1, Feedback 15%, Short decay (30ms)
|
|
191
|
+
- Osc B: Sine, Coarse 7, Fine 130 (inharmonic), Level 70%, Short decay (47ms)
|
|
192
|
+
- Osc C: Sine, Coarse 3, Fine 50, Level 50%, Very short decay (27ms)
|
|
193
|
+
- Osc D: Sine, Coarse 1, Level 0% (inactive but available for modulation)
|
|
194
|
+
- Pitch Env: +24st, Decay 15ms (click/zap transient)
|
|
195
|
+
- LFO: SwDown wave, High range, Rate 100 → filter for rhythmic gating
|
|
196
|
+
- Shaper: Hard at 60% drive for digital crunch
|
|
197
|
+
|
|
198
|
+
**FM bell/metallic hit:**
|
|
199
|
+
- Algorithm 3 (two pairs)
|
|
200
|
+
- Osc A: Sine, Coarse 1 (fundamental)
|
|
201
|
+
- Osc B: Sine, Coarse 3.51 (inharmonic), Level 45%, Decay 800ms
|
|
202
|
+
- Osc C: Sine, Coarse 1 (second fundamental, detuned +5 Fine)
|
|
203
|
+
- Osc D: Sine, Coarse 7.03 (inharmonic), Level 30%, Decay 400ms
|
|
204
|
+
- Long release on carriers (2-4s) for sustaining bell tone
|
|
205
|
+
- Post: Reverb with long decay for shimmering bell
|
|
206
|
+
|
|
207
|
+
**Sub bass with character:**
|
|
208
|
+
- Algorithm 7 (all carriers — additive)
|
|
209
|
+
- Osc A: Sine, Coarse 1, Level 85% (fundamental)
|
|
210
|
+
- Osc B: Sine, Coarse 2, Level 30% (first harmonic — adds audibility on small speakers)
|
|
211
|
+
- Osc C: Off
|
|
212
|
+
- Osc D: Sine, Coarse 1, Feedback 40% (noise-like, level 15% for sub rumble)
|
|
213
|
+
- Filter: LP24, Freq 65% (cuts harsh harmonics), Drive 6dB
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
## Meld
|
|
218
|
+
|
|
219
|
+
Two "macro oscillators" with multiple synthesis methods per oscillator. The oscillators are named "engines" and each provides a different synthesis approach. Extensive modulation matrix.
|
|
220
|
+
|
|
221
|
+
### Core Concept
|
|
222
|
+
|
|
223
|
+
Meld's power is in combining two different synthesis engines. Each oscillator slot can be:
|
|
224
|
+
- **Swarm:** Multiple detuned voices — supersaw-like
|
|
225
|
+
- **Noise:** Filtered noise with tonal character
|
|
226
|
+
- **Sub:** Clean sub oscillator
|
|
227
|
+
- **FM:** Frequency modulation
|
|
228
|
+
- **Virtual Analog:** Classic waveforms
|
|
229
|
+
- **Grain:** Granular-like texture
|
|
230
|
+
|
|
231
|
+
### Creative Applications
|
|
232
|
+
|
|
233
|
+
**Wall of sound chords (from Ableton's tutorial):**
|
|
234
|
+
- Engine 1: Swarm with high voice count, moderate detune
|
|
235
|
+
- Engine 2: FM with subtle modulation
|
|
236
|
+
- Matrix: LFO → Engine 1 detune amount for slow chorus movement
|
|
237
|
+
- Post-processing: Roar (parallel mode, gentle saturation) → Hybrid Reverb
|
|
238
|
+
|
|
239
|
+
**Sub bass with harmonics:**
|
|
240
|
+
- Engine 1: Sub (clean sine)
|
|
241
|
+
- Engine 2: Virtual Analog (saw, heavily filtered) for harmonic content
|
|
242
|
+
- Matrix: Velocity → Engine 2 filter cutoff (harder hits = brighter harmonics)
|
|
243
|
+
- Post: Saturator (Soft Sine curve) for gentle warmth
|
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
# Genre Vocabularies — Aesthetic → Tool Manifold
|
|
2
|
+
|
|
3
|
+
A genre-level complement to `artist-vocabularies.md`. Where the artist file says
|
|
4
|
+
"Villalobos uses X", this file says "microhouse aesthetic uses X regardless of who
|
|
5
|
+
is making it."
|
|
6
|
+
|
|
7
|
+
Each genre entry has:
|
|
8
|
+
- **Tempo / time** — the sonic starting point
|
|
9
|
+
- **Kick** — character + frequency / tempo recommendations
|
|
10
|
+
- **Bass** — character + register
|
|
11
|
+
- **Percussion** — style, layering, aesthetic
|
|
12
|
+
- **Harmonic material** — synth/sampled, tonal vs atonal, key tendencies
|
|
13
|
+
- **Texture / atmosphere** — what fills space
|
|
14
|
+
- **Reach for** — LivePilot devices by role
|
|
15
|
+
- **Avoid** — anti-patterns that kill the genre
|
|
16
|
+
|
|
17
|
+
LLMs encountering "make me a <genre> track" should read this before choosing tools.
|
|
18
|
+
**These are not recipes.** Every entry is a set of constraints and opinions that
|
|
19
|
+
leave creative choice to the LLM + user.
|
|
20
|
+
|
|
21
|
+
> **v1.18+ structured packets:** each genre below also has a machine-readable
|
|
22
|
+
> YAML packet at `concepts/genres/<slug>.yaml`. The narrative here is the
|
|
23
|
+
> human-facing overview; the YAML is the source-of-truth for director
|
|
24
|
+
> compilation. When updating a genre, update BOTH. Schema: `concepts/_schema.md`.
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Microhouse
|
|
29
|
+
**Tempo / time:** 122-128 BPM, straight 4/4 with constant micro-variation.
|
|
30
|
+
**Kick:** Minimal, short decay, ~55 Hz fundamental. Not the feature.
|
|
31
|
+
**Bass:** Filtered mid-bass, occasional sub-layer. Warm, sometimes tonal.
|
|
32
|
+
**Percussion:** Hyper-chopped vocal snippets, glass/metal percussion, shakers,
|
|
33
|
+
conga/cuica hits. The PERCUSSION is the genre, not the kick.
|
|
34
|
+
**Harmonic:** Chord stabs filtered, sometimes pitched vocal fragments as hooks.
|
|
35
|
+
In-key D minor / A minor / F minor common.
|
|
36
|
+
**Texture:** Field recordings, vinyl crackle, reverb tails at -20 to -30 dB hidden
|
|
37
|
+
under main elements.
|
|
38
|
+
**Reach for:**
|
|
39
|
+
- Instruments: Simpler (slicing, One-Shot for pitched chops), Snipper, Drift, Poli,
|
|
40
|
+
Granulator III
|
|
41
|
+
- FX: PitchLoop89, Auto Filter (band-pass sweeps), Convolution Reverb, Gated Delay,
|
|
42
|
+
Variations (for stab morphing)
|
|
43
|
+
- Packs: Voice Box, Chop and Swing, Latin Percussion, Lost and Found, Mood Reel
|
|
44
|
+
**Avoid:** Loud kicks, sidechain, long-sustain melody, bright overtones, repeated
|
|
45
|
+
8-bar loops.
|
|
46
|
+
**Canonical artists:** Akufen, Isolée, Luomo, Villalobos (microhouse-leaning tracks),
|
|
47
|
+
Robag Wruhme, Dimbiman.
|
|
48
|
+
**Key techniques:** `"Vocal micro-chop (Akufen)"` (simpler), `"micro_chop"`, `"dub_throw"`,
|
|
49
|
+
`"Hat replay pitch drift"` (snipper).
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Dub Techno
|
|
54
|
+
**Tempo / time:** 120-130 BPM, rigid 4/4.
|
|
55
|
+
**Kick:** Low mid (60-80 Hz fundamental), short, not aggressive. Serves the dub not
|
|
56
|
+
the rave.
|
|
57
|
+
**Bass:** Pure sine sub at fundamental, no modulation, very long release. Felt not
|
|
58
|
+
heard.
|
|
59
|
+
**Percussion:** 909-style hat, minimal closed/open interplay, occasional hand
|
|
60
|
+
percussion, stick-click ghost hits.
|
|
61
|
+
**Harmonic:** Single chord stab (minor 7th or suspended 4th) feeding delay → filter
|
|
62
|
+
→ reverb. The FX chain IS the arrangement.
|
|
63
|
+
**Texture:** Vinyl crackle, rain/nature field recordings, hiss, long reverb tails at
|
|
64
|
+
-10 to -20 dB.
|
|
65
|
+
**Reach for:**
|
|
66
|
+
- Instruments: Poli (warm chord), Drift (simple stab), Simpler for dub-sub samples,
|
|
67
|
+
Harmonic Drone Generator (Drone Lab)
|
|
68
|
+
- FX: Convolution Reverb (Farfisa Spring, Stocktronics), Echo (long delay with filter
|
|
69
|
+
on return), Auto Filter (on delay return), Utility (sub → mono)
|
|
70
|
+
- Packs: Drone Lab, Chop and Swing (crackle), Lost and Found (found-sound texture)
|
|
71
|
+
**Avoid:** Bright EQ, crisp transients, complex melody, fast tempo, sidechain
|
|
72
|
+
compression.
|
|
73
|
+
**Canonical artists:** Basic Channel, Rhythm & Sound, Deepchord, Porter Ricks,
|
|
74
|
+
Yagya.
|
|
75
|
+
**Key techniques:** `"The dub chord"` (sound-design-deep.md), `"Reverb as harmony"`,
|
|
76
|
+
`"Delay throws"`, `"Dub sub-bass"` (bass).
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## Deep Minimal / Villalobos-school
|
|
81
|
+
**Tempo / time:** 125-135 BPM, 4/4 with extreme micro-timing variation and polyrhythms
|
|
82
|
+
suggested via percussion.
|
|
83
|
+
**Kick:** Deep fundamental (40-50 Hz — use `sub_low` analyzer band to verify), short
|
|
84
|
+
envelope, sometimes with internal pitch movement.
|
|
85
|
+
**Bass:** Sub at fundamental + mid-bass layer, often tonal.
|
|
86
|
+
**Percussion:** Latin hand percussion (cuica, conga, guiro, claves) + digital glass/
|
|
87
|
+
metal + heavily chopped vocals. Off-grid micro-timing on most hits.
|
|
88
|
+
**Harmonic:** Chopped vocals AS melody, occasional chord stab, microtonal moments.
|
|
89
|
+
**Texture:** Constant field-recording / found-sound subtext, reverb tails layered
|
|
90
|
+
at -25 to -30 dB.
|
|
91
|
+
**Reach for:**
|
|
92
|
+
- Instruments: Simpler (slicing), Bass (Creative Extensions), Drone Lab (sub-bed),
|
|
93
|
+
Operator (Haas-style deep bass)
|
|
94
|
+
- FX: PitchLoop89, Convolution Reverb, Phase Pattern (off-grid percussion), Microtuner
|
|
95
|
+
- Packs: Latin Percussion, Lost and Found, Voice Box, Drone Lab, Chop and Swing,
|
|
96
|
+
Glitch and Wash
|
|
97
|
+
**Avoid:** Quantized drums, 8-bar repetition, bright kicks, dry mix, sidechain.
|
|
98
|
+
**Canonical artists:** Villalobos, Margaret Dygas, Zip, Petre Inspirescu, Raresh,
|
|
99
|
+
rpr soundsystem.
|
|
100
|
+
**Key techniques:** `"Villalobos sub-bass layer"` (simpler), `"Phase Pattern on drum
|
|
101
|
+
clips"`, `"micro_chop"`, `"Arpiar dusty-horn"` (trumpet pp through PitchLoop89).
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Minimal Techno
|
|
106
|
+
**Tempo / time:** 128-132 BPM, 4/4.
|
|
107
|
+
**Kick:** Punchy-but-restrained, clean, ~60 Hz.
|
|
108
|
+
**Bass:** Filtered sub with LFO-driven movement, moderate compression.
|
|
109
|
+
**Percussion:** 909 hats, occasional hand percussion, no clutter.
|
|
110
|
+
**Harmonic:** Single evolving source (filter automation IS the melody), occasional
|
|
111
|
+
stab.
|
|
112
|
+
**Texture:** Minimal — one or two background elements, always subtly evolving.
|
|
113
|
+
**Reach for:**
|
|
114
|
+
- Instruments: Analog (Hawtin subtractive), Drift, Operator, Simpler
|
|
115
|
+
- FX: Auto Filter with slow LFO, Convolution Reverb, Echo, Saturator
|
|
116
|
+
- Packs: Core Library synths, Drone Lab
|
|
117
|
+
**Avoid:** Additive arrangement, thick layering, busy percussion, preset chains.
|
|
118
|
+
**Canonical artists:** Plastikman / Richie Hawtin, Robert Hood, Lawrence, Daniel Avery.
|
|
119
|
+
**Key techniques:** `"Hawtin subtractive pad"` (analog), `"Micro-Modulation"`,
|
|
120
|
+
`"Subtraction over addition"`.
|
|
121
|
+
|
|
122
|
+
---
|
|
123
|
+
|
|
124
|
+
## Ambient / Drone
|
|
125
|
+
**Tempo / time:** 60-90 BPM or no perceptible tempo. Duration 5-30+ minutes per piece.
|
|
126
|
+
**Kick:** None, or very sparse.
|
|
127
|
+
**Bass:** Sub-bass drone, sustained. Sometimes absent.
|
|
128
|
+
**Percussion:** Absent, or occasional distant bell/chime/rim-shot.
|
|
129
|
+
**Harmonic:** Sustained pads, drones, evolving harmonic fields. Modal or microtonal
|
|
130
|
+
common.
|
|
131
|
+
**Texture:** IS the composition. Reverb, granular, delay, tape degradation.
|
|
132
|
+
**Reach for:**
|
|
133
|
+
- Instruments: Granulator III (Cloud mode), Harmonic Drone Generator, Vector Grain,
|
|
134
|
+
Emit, Tension (bowed cello), Sampler (orchestral)
|
|
135
|
+
- FX: Convolution Reverb (cathedral/hall), Vector Delay, Delay, Erosion, Dynamic Tube
|
|
136
|
+
- Packs: Drone Lab, Inspired by Nature, Mood Reel, Orchestral Strings/Woodwinds
|
|
137
|
+
(pp only)
|
|
138
|
+
**Avoid:** Drums, rhythmic patterns, fast elements, bright EQ, hard cuts.
|
|
139
|
+
**Canonical artists:** Stars of the Lid, Tim Hecker, William Basinski, Wolfgang Voigt
|
|
140
|
+
(Gas), Jóhann Jóhannsson, Aphex Twin (ambient phase), Thomas Köner.
|
|
141
|
+
**Key techniques:** `"Grain cloud (Tim Hecker)"` (emit), `"Basinski tape degradation"`
|
|
142
|
+
(vector_grain), `"Slow-motion sustain"`, `"extreme_stretch"`, `"tail_harvest"`.
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## IDM
|
|
147
|
+
**Tempo / time:** 80-150 BPM, complex rhythms (quintuplets, polyrhythms, non-4/4 common).
|
|
148
|
+
**Kick:** Varied — sometimes 808, sometimes Amen chop, sometimes synthesized.
|
|
149
|
+
**Bass:** Heavy low-end, FM-generated common, sub-modulated.
|
|
150
|
+
**Percussion:** Hyper-detailed, often computer-generated rhythms, non-quantized
|
|
151
|
+
micro-timing, metal/glass samples.
|
|
152
|
+
**Harmonic:** Atonal or microtonal common, melodic fragments rather than sustained
|
|
153
|
+
melody.
|
|
154
|
+
**Texture:** Granular, glitchy, digital artifacts embraced.
|
|
155
|
+
**Reach for:**
|
|
156
|
+
- Instruments: Operator (FM), Vector FM, Wavetable, Emit, Vector Grain, Simpler,
|
|
157
|
+
Tension, Collision
|
|
158
|
+
- FX: Erosion, Pitch Hack, Roar, Spectral Blur, Grain Delay, Ring Modulator via
|
|
159
|
+
Operator
|
|
160
|
+
- Packs: Inspired by Nature, Performance Pack (Variations), MIDI Tools (Polyrhythm,
|
|
161
|
+
Phase Pattern)
|
|
162
|
+
**Avoid:** Clean production, simple 4/4, traditional harmony.
|
|
163
|
+
**Canonical artists:** Aphex Twin, Autechre, Boards of Canada, μ-Ziq, Squarepusher,
|
|
164
|
+
Venetian Snares, Oneohtrix Point Never.
|
|
165
|
+
**Key techniques:** `"Aphex ambient FM pad"` (operator), `"Modulated bell cluster"`
|
|
166
|
+
(vector_fm), `"Chaotic lock-in"` (vector_map), `"granular_scatter"`,
|
|
167
|
+
`"euclidean_slice_trigger"`.
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
171
|
+
## Modern Classical / Cinematic
|
|
172
|
+
**Tempo / time:** 60-90 BPM or rubato (no fixed tempo).
|
|
173
|
+
**Kick:** None, or timpani.
|
|
174
|
+
**Bass:** Cello, double-bass pizzicato, or orchestral bass drum. Not electronic.
|
|
175
|
+
**Percussion:** Absent or orchestral (mallets, timpani, cymbals at pp).
|
|
176
|
+
**Harmonic:** Sustained strings, piano fragments, occasional brass swells. Major/minor
|
|
177
|
+
tonal with occasional chromatic motion.
|
|
178
|
+
**Texture:** Natural hall acoustic, sustained strings, grand piano resonance.
|
|
179
|
+
**Reach for:**
|
|
180
|
+
- Instruments: Sampler (multi-velocity orchestral libraries), Tension (bowed cello),
|
|
181
|
+
Collision (mallets), Upright Piano (Spitfire), Orchestral Mallets
|
|
182
|
+
- FX: Convolution Reverb (hall / cathedral IR), EQ Eight (gentle high-shelf), Compressor
|
|
183
|
+
(string bus)
|
|
184
|
+
- Packs: Spitfire Strings/Brass, Orchestral Mallets, Upright Piano, SONiVOX Orchestral
|
|
185
|
+
Strings/Brass/Woodwinds (pp only)
|
|
186
|
+
**Avoid:** Electronic drums, synthesizers (unless sparse & atmospheric), compressed
|
|
187
|
+
mix, bright EQ.
|
|
188
|
+
**Canonical artists:** Max Richter, Jóhann Jóhannsson, Hildur Guðnadóttir, Nils Frahm,
|
|
189
|
+
Max Cooper.
|
|
190
|
+
**Key techniques:** `"Orchestral multi-velocity"` (sampler), `"Bowed cello low register"`
|
|
191
|
+
(tension), `"Single sustained note pedal-down"` (Upright Piano).
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
## Hip-Hop (Boom Bap / Lo-Fi)
|
|
196
|
+
**Tempo / time:** 85-95 BPM, swing 60-70% (Dilla-feel requires manual micro-timing,
|
|
197
|
+
not groove template).
|
|
198
|
+
**Kick:** Warm, sometimes dusty. ~55-65 Hz fundamental.
|
|
199
|
+
**Bass:** Electric bass samples, 808 alternative on modern tracks.
|
|
200
|
+
**Percussion:** Chopped breaks (Amen, Funky Drummer, Impeach the President, The
|
|
201
|
+
Mexican, Apache), dusty snares, vinyl-saturated hats.
|
|
202
|
+
**Harmonic:** Chopped soul/jazz loops, Rhodes/Wurly samples, sometimes unintentional
|
|
203
|
+
key clashes that become the sound.
|
|
204
|
+
**Texture:** Vinyl crackle, tape hiss, saturator on drum bus.
|
|
205
|
+
**Reach for:**
|
|
206
|
+
- Instruments: Simpler (classic mode for stabs, slicing for drum breaks), Electric
|
|
207
|
+
Keyboards, Bass
|
|
208
|
+
- FX: Saturator, Vinyl Distortion, Erosion, Dynamic Tube, Tape Delay via Grain Delay,
|
|
209
|
+
Gated Delay (Creative Extensions)
|
|
210
|
+
- Packs: Chop and Swing, Golden Era Hip-Hop Drums, Drum Booth, Electric Keyboards,
|
|
211
|
+
Core Library samples
|
|
212
|
+
**Avoid:** Quantized drums, clean production, modern trap hats, synth bass.
|
|
213
|
+
**Canonical artists:** J Dilla, DJ Premier, Madlib, RZA, Pete Rock, Nujabes.
|
|
214
|
+
**Key techniques:** `"J Dilla micro-timed kit"` (simpler), `"Tape-warped EP"` (electric),
|
|
215
|
+
`"slice_and_sequence"`, `"stab_isolation"`.
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## Trap / Modern Hip-Hop
|
|
220
|
+
**Tempo / time:** 130-160 BPM (half-time feel = 65-80 BPM perceived).
|
|
221
|
+
**Kick:** 808 sub-bass (sine with pitch envelope down), long decay.
|
|
222
|
+
**Bass:** 808 IS the bass. No separate bassline.
|
|
223
|
+
**Percussion:** Crisp snappy snares, hyper-fast hi-hat rolls (1/32, 1/64), metal shakers,
|
|
224
|
+
claps doubled with snare.
|
|
225
|
+
**Harmonic:** Minor-key melody, heavily-tuned synth stabs, sometimes strings/piano.
|
|
226
|
+
**Texture:** Atmospheric pads, vocal chops, ad-lib snippets.
|
|
227
|
+
**Reach for:**
|
|
228
|
+
- Instruments: Bass (Creative Extensions — 808), Simpler (trap one-shots), Wavetable
|
|
229
|
+
(stabs), Drum Rack (programmed hats)
|
|
230
|
+
- FX: Compressor (aggressive), Saturator, Reverb, Pitch Hack (ad-lib chops)
|
|
231
|
+
- Packs: Trap Drums, Beat Tools, Splice 808 kits (via sample engine)
|
|
232
|
+
**Avoid:** Live drums, major-key dominance, slow tempo.
|
|
233
|
+
**Canonical artists:** Metro Boomin, Southside, 808 Mafia, Travis Scott (production
|
|
234
|
+
style).
|
|
235
|
+
**Key techniques:** `"808 sub replacement"` (bass), `"Wobble bass"` at reduced depth
|
|
236
|
+
for tonal 808, hat-roll 1/32 programming.
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## Dubstep / Bass Music (Modern)
|
|
241
|
+
**Tempo / time:** 140 BPM, half-time feel (snare on 3).
|
|
242
|
+
**Kick:** Punchy ~55 Hz, often layered with sub.
|
|
243
|
+
**Bass:** Wobble bass (filter-modulated saw), growl bass (FM-heavy), sub drone.
|
|
244
|
+
**Percussion:** Heavy snare on 3, snappy claps, 909 hi-hats, occasional glitch
|
|
245
|
+
percussion.
|
|
246
|
+
**Harmonic:** Minor-key stabs, filtered chords on breakdowns.
|
|
247
|
+
**Texture:** Industrial atmosphere, noise risers.
|
|
248
|
+
**Reach for:**
|
|
249
|
+
- Instruments: Wavetable (wobble), Operator (FM growl), Bass, Drum Rack
|
|
250
|
+
- FX: Auto Filter (wobble), Compressor (heavy), Saturator, Limiter, Ring Modulator
|
|
251
|
+
- Packs: Drum Essentials (dubstep kits), Skitter and Step, Punch and Tilt
|
|
252
|
+
**Avoid:** Full-step kick pattern, major key, clean mix.
|
|
253
|
+
**Canonical artists:** Skrillex (modern), Skream (OG), Mala, Rusko, Excision.
|
|
254
|
+
**Key techniques:** `"Wobble bass"` (wavetable), `"Reese-style bass"` (bass), half-time
|
|
255
|
+
drum programming.
|
|
256
|
+
|
|
257
|
+
---
|
|
258
|
+
|
|
259
|
+
## House / Deep House
|
|
260
|
+
**Tempo / time:** 120-126 BPM, 4/4 straight.
|
|
261
|
+
**Kick:** Full-bodied, ~60 Hz fundamental, compressed, sidechain-friendly.
|
|
262
|
+
**Bass:** Sub + mid-bass layer, tonal, follows chord changes.
|
|
263
|
+
**Percussion:** Open hat on the off-beat, clap on 2+4, shakers.
|
|
264
|
+
**Harmonic:** Chord pads (7th / 9th chords common), Rhodes-style keys, vocal samples.
|
|
265
|
+
**Texture:** Clean digital, occasional vinyl samples.
|
|
266
|
+
**Reach for:**
|
|
267
|
+
- Instruments: Poli (pad), Drift, Electric Keyboards (Rhodes), Bass, Simpler
|
|
268
|
+
- FX: Compressor (sidechained via Envelope Follower), Auto Filter, Reverb, Chorus-
|
|
269
|
+
Ensemble
|
|
270
|
+
- Packs: Synth Essentials, Electric Keyboards, Core Library
|
|
271
|
+
**Avoid:** Minor 7th dominance (unless jazz-house), dry production.
|
|
272
|
+
**Canonical artists:** Larry Heard, Kerri Chandler, Moodymann, Theo Parrish (deep
|
|
273
|
+
house), Masters at Work.
|
|
274
|
+
**Key techniques:** `"Classic Rhodes"` (electric), `"Juno-style detuned chord"` (poli),
|
|
275
|
+
sidechain compression on pad triggered by kick.
|
|
276
|
+
|
|
277
|
+
---
|
|
278
|
+
|
|
279
|
+
## Drum and Bass / Jungle
|
|
280
|
+
**Tempo / time:** 160-180 BPM, 4/4 with half-time perception on Amen breaks.
|
|
281
|
+
**Kick:** Punchy, layered with break kick.
|
|
282
|
+
**Bass:** Reese bass (two detuned saws), sub-bass under the Reese.
|
|
283
|
+
**Percussion:** Amen, Funky Drummer, Apache break chopped and rearranged.
|
|
284
|
+
**Harmonic:** Minimal melody, occasional jazz/orchestral pad.
|
|
285
|
+
**Texture:** Atmospheric pads, jungle vocal samples ("lick shot", "dread").
|
|
286
|
+
**Reach for:**
|
|
287
|
+
- Instruments: Simpler (Amen chopping), Analog (Reese), Bass, SONiVOX Strings (pp
|
|
288
|
+
pad)
|
|
289
|
+
- FX: Compressor (drum bus glue), Saturator, Roar (modern neurofunk), Convolution
|
|
290
|
+
Reverb
|
|
291
|
+
- Packs: Drum Essentials, Splice break packs
|
|
292
|
+
**Avoid:** Quantized drums (Amen must be chopped and rearranged), synth bass in
|
|
293
|
+
place of Reese.
|
|
294
|
+
**Canonical artists:** Photek, Source Direct, Goldie, Roni Size (jungle/jazzstep),
|
|
295
|
+
Noisia, Phace (modern neurofunk).
|
|
296
|
+
**Key techniques:** `"Reese bass (drum & bass)"` (analog), `"slice_and_sequence"` on
|
|
297
|
+
Amen at 174 BPM.
|
|
298
|
+
|
|
299
|
+
---
|
|
300
|
+
|
|
301
|
+
## Garage / UK Garage / 2-Step
|
|
302
|
+
**Tempo / time:** 130-140 BPM, 2-step shuffle pattern (kick on 1, snare on 3, but
|
|
303
|
+
broken hat pattern).
|
|
304
|
+
**Kick:** Punchy, often offset off-grid.
|
|
305
|
+
**Bass:** Sub-bass with slide + filter modulation.
|
|
306
|
+
**Percussion:** Shuffled hats (NOT straight 16ths), occasional tom fills.
|
|
307
|
+
**Harmonic:** R&B-chord influence, vocal samples chopped.
|
|
308
|
+
**Texture:** Skippy, vibrant, sometimes dub-influenced reverb.
|
|
309
|
+
**Reach for:**
|
|
310
|
+
- Instruments: Simpler (vocal chops), Bass, Drift
|
|
311
|
+
- FX: Auto Filter, Ping-Pong Delay, Compressor, Convolution Reverb
|
|
312
|
+
- Packs: Skitter and Step (the pack literally for this genre), Voice Box
|
|
313
|
+
**Avoid:** Straight 16th hats, trap-style snares, minor-9th minor dominance.
|
|
314
|
+
**Canonical artists:** Todd Edwards, MJ Cole, Artful Dodger, Burial (post-garage).
|
|
315
|
+
**Key techniques:** `"vocal_chop_rhythm"`, shuffled hat programming, bass-glide
|
|
316
|
+
automation.
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## Experimental / Noise / Found-Sound
|
|
321
|
+
**Tempo / time:** Variable or no tempo.
|
|
322
|
+
**Kick:** Absent or found-sound substitute.
|
|
323
|
+
**Bass:** Drone, sub-bass, or absent.
|
|
324
|
+
**Percussion:** Found-sound percussion (metal, glass, objects), not kit drums.
|
|
325
|
+
**Harmonic:** Often atonal, microtonal, or noise-based.
|
|
326
|
+
**Texture:** IS everything. Granular, spectral, saturated, reversed.
|
|
327
|
+
**Reach for:**
|
|
328
|
+
- Instruments: Vector Grain, Emit, Corpus, Tension (weird settings), Collision,
|
|
329
|
+
Bell Tower
|
|
330
|
+
- FX: Erosion, Roar, Spectral Blur, Spectral Resonator, Shifter, Pitch Hack, Grain
|
|
331
|
+
Delay
|
|
332
|
+
- Packs: Lost and Found, Glitch and Wash, Inspired by Nature, Building Max Devices
|
|
333
|
+
**Avoid:** Predictable arrangement, traditional harmony, clean signal chains.
|
|
334
|
+
**Canonical artists:** Arca, SOPHIE, Oneohtrix Point Never, Fennesz, Alva Noto, Pan
|
|
335
|
+
Sonic.
|
|
336
|
+
**Key techniques:** `"Noise Bow"` (corpus), `"Chaotic lock-in"` (vector_map),
|
|
337
|
+
`"granular_scatter"`, `"Modulated bell cluster"` (vector_fm).
|
|
338
|
+
|
|
339
|
+
---
|
|
340
|
+
|
|
341
|
+
## Synthwave / Retrowave / Outrun
|
|
342
|
+
**Tempo / time:** 85-115 BPM, 4/4 with mid-tempo groove. Vaporwave aliased here
|
|
343
|
+
(slower, more detuned, more sample-flip-heavy).
|
|
344
|
+
**Kick:** Analog-leaning, gated reverb signature. Not subby — sits in low-mid.
|
|
345
|
+
**Bass:** Warm analog, Juno/Moog flavor, slight portamento, sub-tail short.
|
|
346
|
+
**Percussion:** Gated snare reverb (the 80s hallmark), simple hi-hat patterns,
|
|
347
|
+
linear drum programming.
|
|
348
|
+
**Harmonic:** 80s polysynth chords (suspended, minor 7th, add9), arpeggiated
|
|
349
|
+
16th-note sequences, minor-key progressions with dramatic key changes.
|
|
350
|
+
**Texture:** Chorus-Ensemble on leads, gated reverb on snare, analog-tape
|
|
351
|
+
character on the master. Warmth over crispness.
|
|
352
|
+
**Reach for:**
|
|
353
|
+
- Instruments: Poli (Juno-style detuned chord), Analog, Drift (warm pads),
|
|
354
|
+
Wavetable (supersaw lead)
|
|
355
|
+
- FX: Chorus-Ensemble (mandatory on leads), Gated Delay (80s gated-snare
|
|
356
|
+
aesthetic), Arpeggiator (16th-note sequences), Echo
|
|
357
|
+
- Packs: Synth Essentials, Performance Pack (Arpeggiator), Core Library
|
|
358
|
+
**Avoid:** Modern dance production, aggressive compression, digital-only chains,
|
|
359
|
+
bright/harsh synthesis, complex polyrhythm.
|
|
360
|
+
**Canonical artists:** Com Truise, Tycho, Kavinsky, Mitch Murder, FM-84, Power
|
|
361
|
+
Glove, Lazerhawk.
|
|
362
|
+
**Key techniques:** `"Juno-style detuned chord"` (poli), `"Warm synthwave pad"`
|
|
363
|
+
(drift), `"Supersaw trance lead"` (wavetable), `"Gated reverb snare"` (echo).
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## How to use this file
|
|
368
|
+
|
|
369
|
+
When asked for a specific genre:
|
|
370
|
+
|
|
371
|
+
1. Find the entry (or closest genre).
|
|
372
|
+
2. Use the **tempo**, **kick character**, **bass character**, **percussion** sections
|
|
373
|
+
to set session parameters (`set_tempo`, time signature, track structure).
|
|
374
|
+
3. Use the **Reach for** list to populate device chains via `atlas_search` +
|
|
375
|
+
`load_browser_item`.
|
|
376
|
+
4. Cross-reference the **Key techniques** with `signature_techniques` in per-device
|
|
377
|
+
YAML files or named techniques in `sample-techniques.md` / `sound-design-deep.md`.
|
|
378
|
+
5. Respect the **Avoid** list — it represents the genre's negative constraints, not
|
|
379
|
+
just opinions.
|
|
380
|
+
|
|
381
|
+
Genres blend. "Deep-minimal-dub-techno" borrows from deep_minimal, minimal_techno,
|
|
382
|
+
and dub_techno simultaneously. Read multiple entries and synthesize.
|