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,104 @@
|
|
|
1
|
+
id: ping_pong_delay
|
|
2
|
+
name: Ping Pong Delay
|
|
3
|
+
type: effect
|
|
4
|
+
category: delay
|
|
5
|
+
aliases:
|
|
6
|
+
- "ping pong delay"
|
|
7
|
+
- "ping-pong delay"
|
|
8
|
+
- "ppd"
|
|
9
|
+
# IMPORTANT: Ping Pong Delay is NOT a standalone device in Live 12. The atlas
|
|
10
|
+
# search for "Ping Pong Delay" returns empty. This packet is a mode-alias that
|
|
11
|
+
# resolves to Echo with Channel Mode = 1 (Ping Pong). Director should load
|
|
12
|
+
# Echo via atlas_search_query below, then set Channel Mode to 1.
|
|
13
|
+
atlas_search_query: "Echo"
|
|
14
|
+
|
|
15
|
+
musical_roles:
|
|
16
|
+
- stereo widening via left-right bounce
|
|
17
|
+
- dub-techno send delay (canonical placement on return)
|
|
18
|
+
- filter-on-return for dub tails (Echo's internal LP/HP filter)
|
|
19
|
+
- rhythmic bouncing accent (1/4, 1/8, 1/16 sync)
|
|
20
|
+
|
|
21
|
+
strong_for:
|
|
22
|
+
- dub-techno return chain (Echo in ping-pong mode feeds filter + reverb)
|
|
23
|
+
- widening mono-source chord stabs
|
|
24
|
+
- off-beat rhythmic accents
|
|
25
|
+
- sparse clip material that wants implied density
|
|
26
|
+
|
|
27
|
+
risky_for:
|
|
28
|
+
- dense percussion (PPD mode smears transients, worsens mud)
|
|
29
|
+
- already-stereo sources (double-spreading)
|
|
30
|
+
- low-frequency sources (stereo bass destroys mono compatibility)
|
|
31
|
+
- clip material with its own strong groove (fights the groove)
|
|
32
|
+
|
|
33
|
+
# All parameter names below are Echo's actual parameter names. Load Echo,
|
|
34
|
+
# set Channel Mode = 1, then configure these. Confirmed against live
|
|
35
|
+
# device state v1.18.0.
|
|
36
|
+
subtle_ranges:
|
|
37
|
+
feedback: [0.10, 0.25]
|
|
38
|
+
channel_mode: 1 # Ping Pong mode — mandatory for PPD behavior
|
|
39
|
+
lp_freq: [0.50, 0.70] # 0-1 normalized, display ~600-2000 Hz
|
|
40
|
+
moderate_ranges:
|
|
41
|
+
feedback: [0.30, 0.55]
|
|
42
|
+
channel_mode: 1
|
|
43
|
+
lp_freq: [0.30, 0.55] # display ~200-700 Hz (dub-filtered)
|
|
44
|
+
aggressive_ranges:
|
|
45
|
+
feedback: [0.60, 0.85]
|
|
46
|
+
channel_mode: 1
|
|
47
|
+
lp_freq: [0.15, 0.35] # heavy low-pass — deep dub tails
|
|
48
|
+
|
|
49
|
+
pairings:
|
|
50
|
+
- device: Auto Filter
|
|
51
|
+
order: after
|
|
52
|
+
purpose: filter delayed tails on the return
|
|
53
|
+
- device: Convolution Reverb
|
|
54
|
+
order: after
|
|
55
|
+
purpose: dub chain — reverb the filtered PPD tails
|
|
56
|
+
- device: Utility
|
|
57
|
+
order: before
|
|
58
|
+
purpose: mono-ize input before stereo delay (centers the dub chord)
|
|
59
|
+
- device: Saturator
|
|
60
|
+
order: after
|
|
61
|
+
purpose: warm saturation on delayed repetitions
|
|
62
|
+
|
|
63
|
+
anti_pairings:
|
|
64
|
+
- "Another Echo in series (use one with higher feedback instead)"
|
|
65
|
+
- "Panner after this Echo (Echo already handles stereo; panner causes phase issues)"
|
|
66
|
+
|
|
67
|
+
remeasure:
|
|
68
|
+
- stereo_width
|
|
69
|
+
- spectral_balance
|
|
70
|
+
- low_headroom
|
|
71
|
+
- mono_compatibility # stereo delay can phase-cancel in mono
|
|
72
|
+
|
|
73
|
+
dimensional_impact:
|
|
74
|
+
structural: low
|
|
75
|
+
rhythmic: moderate
|
|
76
|
+
timbral: low-moderate
|
|
77
|
+
spatial: high
|
|
78
|
+
|
|
79
|
+
appears_in_packets:
|
|
80
|
+
artists:
|
|
81
|
+
- basic-channel
|
|
82
|
+
genres:
|
|
83
|
+
- microhouse
|
|
84
|
+
- dub-techno
|
|
85
|
+
- uk-garage
|
|
86
|
+
|
|
87
|
+
notes: |
|
|
88
|
+
Ping Pong Delay is NOT a standalone device in Live 12 — it's a mode of
|
|
89
|
+
Echo. Load the Echo device (atlas_search_query: "Echo"), then set the
|
|
90
|
+
"Channel Mode" parameter to 1 (value_string will confirm "Ping Pong").
|
|
91
|
+
|
|
92
|
+
Canonical Basic Channel / Rhythm & Sound architecture:
|
|
93
|
+
SEND → Echo (Channel Mode = 1, internal LP filter at 400–700 Hz)
|
|
94
|
+
→ Convolution Reverb (Farfisa Spring IR, 100% wet)
|
|
95
|
+
→ return back to mix
|
|
96
|
+
The chord stab's WET path becomes the harmonic content.
|
|
97
|
+
|
|
98
|
+
For microhouse and UK garage, use shorter sync times (1/16, 1/8) with
|
|
99
|
+
moderate feedback for rhythmic bounce accent rather than sustained dub
|
|
100
|
+
tail.
|
|
101
|
+
|
|
102
|
+
If a future Live version adds a standalone Ping Pong Delay device,
|
|
103
|
+
this packet should be rewritten to point at it; for now the mode-alias
|
|
104
|
+
framing is the accurate one.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
id: poli
|
|
2
|
+
name: Poli
|
|
3
|
+
type: instrument
|
|
4
|
+
category: synth
|
|
5
|
+
aliases:
|
|
6
|
+
- "poli"
|
|
7
|
+
atlas_search_query: "Poli"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- Juno-style detuned chord stab
|
|
11
|
+
- retro polysynth pad
|
|
12
|
+
- 80s synthwave lead
|
|
13
|
+
- dub-techno chord stab (short release)
|
|
14
|
+
- house melodic stab
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- Juno-6 / Juno-60 character
|
|
18
|
+
- chord stabs with authentic analog-polysynth feel
|
|
19
|
+
- synthwave arpeggios (Com Truise / Tycho aesthetic)
|
|
20
|
+
- dub-techno chord source (with filtered-delay send)
|
|
21
|
+
- retro 80s patches
|
|
22
|
+
|
|
23
|
+
risky_for:
|
|
24
|
+
- modern digital-sounding synthesis (use Wavetable)
|
|
25
|
+
- extreme FM timbres (use Operator)
|
|
26
|
+
- granular textures (use Granulator III)
|
|
27
|
+
- trap 808 (use Bass)
|
|
28
|
+
- warm neutral pads without retro character (use Drift)
|
|
29
|
+
|
|
30
|
+
subtle_ranges:
|
|
31
|
+
detune: [0.0, 0.15]
|
|
32
|
+
filter_cutoff: [0.5, 0.75]
|
|
33
|
+
envelope_release: [0.1, 0.3]
|
|
34
|
+
chorus_amount: [0.0, 0.3] # Poli has internal chorus
|
|
35
|
+
moderate_ranges:
|
|
36
|
+
detune: [0.15, 0.35]
|
|
37
|
+
filter_cutoff: [0.3, 0.6]
|
|
38
|
+
envelope_release: [0.3, 0.8]
|
|
39
|
+
chorus_amount: [0.3, 0.6]
|
|
40
|
+
aggressive_ranges:
|
|
41
|
+
detune: [0.35, 0.7]
|
|
42
|
+
filter_cutoff: [0.1, 0.4]
|
|
43
|
+
envelope_release: [0.8, 2.0]
|
|
44
|
+
chorus_amount: [0.6, 1.0]
|
|
45
|
+
|
|
46
|
+
pairings:
|
|
47
|
+
- device: Chorus-Ensemble
|
|
48
|
+
order: after
|
|
49
|
+
purpose: additional thickening beyond internal chorus
|
|
50
|
+
- device: Echo
|
|
51
|
+
order: parallel
|
|
52
|
+
purpose: dub chord stab tail via send
|
|
53
|
+
- device: Arpeggiator
|
|
54
|
+
order: before
|
|
55
|
+
purpose: synthwave arpeggios
|
|
56
|
+
- device: Auto Filter
|
|
57
|
+
order: after
|
|
58
|
+
purpose: extra filter movement beyond Poli's internal filter
|
|
59
|
+
|
|
60
|
+
anti_pairings:
|
|
61
|
+
- "Drift in the same role (pick one warm synth for a given part)"
|
|
62
|
+
- "Heavy distortion (breaks retro-polysynth character)"
|
|
63
|
+
|
|
64
|
+
remeasure:
|
|
65
|
+
- plugin_health
|
|
66
|
+
- track_meters
|
|
67
|
+
- spectral_balance
|
|
68
|
+
- stereo_width
|
|
69
|
+
|
|
70
|
+
dimensional_impact:
|
|
71
|
+
structural: low
|
|
72
|
+
rhythmic: low
|
|
73
|
+
timbral: high
|
|
74
|
+
spatial: low-moderate
|
|
75
|
+
|
|
76
|
+
appears_in_packets:
|
|
77
|
+
artists:
|
|
78
|
+
- basic-channel
|
|
79
|
+
- com-truise-tycho
|
|
80
|
+
- jeff-mills
|
|
81
|
+
genres:
|
|
82
|
+
- dub-techno
|
|
83
|
+
- microhouse
|
|
84
|
+
- synthwave
|
|
85
|
+
- techno
|
|
86
|
+
- house
|
|
87
|
+
|
|
88
|
+
notes: |
|
|
89
|
+
Poli is the Juno emulation — reach for it when the aesthetic wants
|
|
90
|
+
classic 80s polysynth character. It differs from Drift (warm
|
|
91
|
+
generic analog) by leaning into Juno-6/60 timbre.
|
|
92
|
+
|
|
93
|
+
Signature techniques in atlas: "Juno-style detuned chord",
|
|
94
|
+
"Retro stab". See atlas for parameter recipes.
|
|
95
|
+
|
|
96
|
+
For dub-techno chord stab: short attack + short release + moderate
|
|
97
|
+
filter cutoff + slight detune + internal chorus at 0.3-0.5. Route
|
|
98
|
+
to send with Ping-Pong Delay + Auto Filter + Convolution Reverb.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
id: saturator
|
|
2
|
+
name: Saturator
|
|
3
|
+
type: effect
|
|
4
|
+
category: distortion
|
|
5
|
+
aliases:
|
|
6
|
+
- "saturator"
|
|
7
|
+
atlas_search_query: "Saturator"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- warm harmonic saturation
|
|
11
|
+
- drum-bus glue
|
|
12
|
+
- Dilla-style dusty warmth
|
|
13
|
+
- Tim Hecker harmonic density
|
|
14
|
+
- subtle tape-style compression via soft clipping
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- warming drum busses (boom-bap, Dilla aesthetic)
|
|
18
|
+
- adding harmonic content to samples
|
|
19
|
+
- Tim Hecker / Arca drone saturation
|
|
20
|
+
- final master-bus warmth (subtle settings)
|
|
21
|
+
- Reese bass saturation (neurofunk)
|
|
22
|
+
|
|
23
|
+
risky_for:
|
|
24
|
+
- already-saturated material (compounds distortion)
|
|
25
|
+
- dynamic sources where clipping kills dynamics
|
|
26
|
+
- transient-critical material (squashes attack)
|
|
27
|
+
- high-end cymbals (harsh digital aliasing)
|
|
28
|
+
|
|
29
|
+
subtle_ranges:
|
|
30
|
+
drive: [0.0, 0.15] # 0-1 normalized (atlas value_string gives dB)
|
|
31
|
+
output: [0.0, 0.0] # compensate for drive
|
|
32
|
+
dc_offset: [0.0, 0.1]
|
|
33
|
+
moderate_ranges:
|
|
34
|
+
drive: [0.15, 0.45]
|
|
35
|
+
output: [-0.1, -0.3]
|
|
36
|
+
dc_offset: [0.0, 0.3]
|
|
37
|
+
aggressive_ranges:
|
|
38
|
+
drive: [0.45, 0.85]
|
|
39
|
+
output: [-0.3, -0.6]
|
|
40
|
+
dc_offset: [0.0, 1.0]
|
|
41
|
+
# Saturator's curve types (analog / soft / medium / hard) affect
|
|
42
|
+
# aggressive-range character more than drive amount.
|
|
43
|
+
|
|
44
|
+
pairings:
|
|
45
|
+
- device: EQ Eight
|
|
46
|
+
order: before
|
|
47
|
+
purpose: shape input spectrum before saturation
|
|
48
|
+
- device: Compressor
|
|
49
|
+
order: after
|
|
50
|
+
purpose: control dynamics after saturation
|
|
51
|
+
- device: Simpler
|
|
52
|
+
order: after # when Simpler sends to a saturated bus
|
|
53
|
+
purpose: Dilla drum-bus warmth
|
|
54
|
+
- device: Vinyl Distortion
|
|
55
|
+
order: parallel
|
|
56
|
+
purpose: different saturation flavors in parallel chain
|
|
57
|
+
|
|
58
|
+
anti_pairings:
|
|
59
|
+
- "Another Saturator in series (compounded distortion — set one hotter instead)"
|
|
60
|
+
- "Erosion + Saturator on the same source (pick one noise-character device)"
|
|
61
|
+
|
|
62
|
+
remeasure:
|
|
63
|
+
- spectral_balance # saturation adds harmonics
|
|
64
|
+
- track_meters # drive compensation needs level check
|
|
65
|
+
- low_headroom # saturation can push master
|
|
66
|
+
|
|
67
|
+
dimensional_impact:
|
|
68
|
+
structural: none
|
|
69
|
+
rhythmic: low # softens transients
|
|
70
|
+
timbral: high # adds harmonics = changes tone
|
|
71
|
+
spatial: none
|
|
72
|
+
|
|
73
|
+
appears_in_packets:
|
|
74
|
+
artists:
|
|
75
|
+
- j-dilla
|
|
76
|
+
- dj-premier-rza
|
|
77
|
+
- madlib
|
|
78
|
+
- jeff-mills
|
|
79
|
+
- moodymann-theo-parrish
|
|
80
|
+
- tim-hecker
|
|
81
|
+
- skream-mala
|
|
82
|
+
genres:
|
|
83
|
+
- hip-hop
|
|
84
|
+
- deep-minimal
|
|
85
|
+
- minimal-techno
|
|
86
|
+
- dubstep
|
|
87
|
+
- drum-and-bass
|
|
88
|
+
- experimental
|
|
89
|
+
|
|
90
|
+
notes: |
|
|
91
|
+
Saturator is the most-used timbral coloration device across the
|
|
92
|
+
catalog. Curve type matters: "Analog Clip" for warm, "Soft Sine"
|
|
93
|
+
for tube-like, "Hard Curve" for aggressive. See atlas
|
|
94
|
+
signature_techniques for curve-specific recipes.
|
|
95
|
+
|
|
96
|
+
Per CLAUDE.md effects-distortion reference: every curve type has
|
|
97
|
+
distinct creative applications — do NOT default to "Analog Clip"
|
|
98
|
+
for everything.
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
id: shifter
|
|
2
|
+
name: Shifter
|
|
3
|
+
type: effect
|
|
4
|
+
category: pitch_effect
|
|
5
|
+
aliases:
|
|
6
|
+
- "shifter"
|
|
7
|
+
atlas_search_query: "Shifter"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- pitch shifting (semitones or cents)
|
|
11
|
+
- formant-preserving vocal shifts
|
|
12
|
+
- doubled octaves / fifths on a source
|
|
13
|
+
- detune-via-shift for ensemble feel
|
|
14
|
+
- experimental pitch transforms (Arca/SOPHIE aesthetic)
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- doubling a source one octave up or down (adds body to bass or air to lead)
|
|
18
|
+
- formant-preserving vocal pitch shifts (lower or raise without chipmunk/ogre effect)
|
|
19
|
+
- cents-level detune for pseudo-chorus on mono sources
|
|
20
|
+
- experimental / noise work with extreme shifts
|
|
21
|
+
|
|
22
|
+
risky_for:
|
|
23
|
+
- material that needs pristine transients (Shifter adds latency / artifacts)
|
|
24
|
+
- non-pitched percussion (pitch shift on noise = artifacts)
|
|
25
|
+
- already-processed pitch material (compounded shift artifacts)
|
|
26
|
+
- real-time performance (Shifter has latency)
|
|
27
|
+
|
|
28
|
+
subtle_ranges:
|
|
29
|
+
pitch_shift_semitones: [-2, 2]
|
|
30
|
+
pitch_shift_cents: [-20, 20]
|
|
31
|
+
wet: [0.05, 0.3] # parallel wet for subtle doubling
|
|
32
|
+
moderate_ranges:
|
|
33
|
+
pitch_shift_semitones: [-7, 7]
|
|
34
|
+
pitch_shift_cents: [-50, 50]
|
|
35
|
+
wet: [0.3, 0.7]
|
|
36
|
+
aggressive_ranges:
|
|
37
|
+
pitch_shift_semitones: [-24, 24] # two octaves
|
|
38
|
+
pitch_shift_cents: [-100, 100]
|
|
39
|
+
wet: [0.7, 1.0]
|
|
40
|
+
|
|
41
|
+
pairings:
|
|
42
|
+
- device: Auto Filter
|
|
43
|
+
order: after
|
|
44
|
+
purpose: filter shifted signal for tone-shaped doubles
|
|
45
|
+
- device: Convolution Reverb
|
|
46
|
+
order: after
|
|
47
|
+
purpose: spatialize shifted signal
|
|
48
|
+
|
|
49
|
+
anti_pairings:
|
|
50
|
+
- "Pitch Hack in same chain (redundant pitch effects — pick one)"
|
|
51
|
+
- "PitchLoop89 in same chain (redundant — PitchLoop89 is specialized)"
|
|
52
|
+
|
|
53
|
+
remeasure:
|
|
54
|
+
- plugin_health
|
|
55
|
+
- spectral_balance
|
|
56
|
+
- track_meters
|
|
57
|
+
|
|
58
|
+
dimensional_impact:
|
|
59
|
+
structural: none
|
|
60
|
+
rhythmic: none
|
|
61
|
+
timbral: high # pitch IS timbral in this context
|
|
62
|
+
spatial: none
|
|
63
|
+
|
|
64
|
+
appears_in_packets:
|
|
65
|
+
artists:
|
|
66
|
+
- arca-sophie
|
|
67
|
+
genres:
|
|
68
|
+
- experimental
|
|
69
|
+
|
|
70
|
+
notes: |
|
|
71
|
+
Shifter is a newer Ableton device. For octave doubling on bass
|
|
72
|
+
or lead, use parallel wet (30-50%) rather than 100% wet to
|
|
73
|
+
preserve original transients.
|
|
74
|
+
|
|
75
|
+
For experimental/noise aesthetic, aggressive range (±24 semitones)
|
|
76
|
+
with 100% wet on a drone/noise source creates impossible pitch
|
|
77
|
+
content.
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
id: simpler
|
|
2
|
+
name: Simpler
|
|
3
|
+
type: instrument
|
|
4
|
+
category: sampler
|
|
5
|
+
aliases:
|
|
6
|
+
- "simpler"
|
|
7
|
+
atlas_search_query: "Simpler"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- slice-based rhythm programming (chopped breaks, chopped vocals)
|
|
11
|
+
- melodic chop tool (Akufen-style micro-chop)
|
|
12
|
+
- one-shot playback with envelope
|
|
13
|
+
- stab source (classic mode, tight crop)
|
|
14
|
+
- sub-bass sample playback (Villalobos layer)
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- classic break slicing (Amen, Funky Drummer, Impeach the President, Apache)
|
|
18
|
+
- micro-chopping vocal samples (sub-syllable chops triggered percussively)
|
|
19
|
+
- loading a drum break with per-slice MIDI notes
|
|
20
|
+
- stab isolation (classic mode with loop disabled, short crop)
|
|
21
|
+
- replacing a kick sample for tonal kick work
|
|
22
|
+
- Villalobos-style sub-bass layer (slicing a sine or sampled sub)
|
|
23
|
+
|
|
24
|
+
risky_for:
|
|
25
|
+
- multi-velocity orchestral playback (use Sampler — multi-sample capable)
|
|
26
|
+
- complex envelope shapes beyond ADSR (use Sampler)
|
|
27
|
+
- sustained pads from single sample (Looper mode can work but Sampler is cleaner)
|
|
28
|
+
|
|
29
|
+
subtle_ranges:
|
|
30
|
+
volume: [0.0, 0.0] # Simpler default is -12 dB — BUMP to 0 for sustained sources
|
|
31
|
+
attack: [0.0, 0.05]
|
|
32
|
+
release: [0.1, 0.3]
|
|
33
|
+
pitch_drift: [0, 5] # cents
|
|
34
|
+
moderate_ranges:
|
|
35
|
+
volume: [0.0, 0.0]
|
|
36
|
+
attack: [0.0, 0.15]
|
|
37
|
+
release: [0.3, 0.8]
|
|
38
|
+
pitch_drift: [5, 25]
|
|
39
|
+
aggressive_ranges:
|
|
40
|
+
attack: [0.15, 1.0]
|
|
41
|
+
release: [0.8, 3.0]
|
|
42
|
+
pitch_drift: [25, 100]
|
|
43
|
+
|
|
44
|
+
pairings:
|
|
45
|
+
- device: Saturator
|
|
46
|
+
order: after
|
|
47
|
+
purpose: warmth on chopped breaks (Dilla aesthetic)
|
|
48
|
+
- device: Vinyl Distortion
|
|
49
|
+
order: after
|
|
50
|
+
purpose: vinyl-warp on break samples
|
|
51
|
+
- device: Snipper
|
|
52
|
+
order: parallel # external via routing
|
|
53
|
+
purpose: pitch-drift chops (microhouse)
|
|
54
|
+
- device: Slice Shuffler
|
|
55
|
+
order: parallel
|
|
56
|
+
purpose: re-sequence slice order (footwork)
|
|
57
|
+
|
|
58
|
+
anti_pairings:
|
|
59
|
+
- "Loading Simpler without confirming Snap=OFF — the Simpler Snap bug (see CLAUDE.md memory); after load_sample_to_simpler, Snap must be OFF or sample plays silently"
|
|
60
|
+
|
|
61
|
+
remeasure:
|
|
62
|
+
- plugin_health # confirm sample loaded (parameter_count > 1)
|
|
63
|
+
- track_meters # confirm audio reaches master (Volume default -12 dB is a trap)
|
|
64
|
+
- slice_count # when loading a break, confirm slices exist
|
|
65
|
+
# CLAUDE.md memory: Simpler Slice mode maps slice N to MIDI pitch 36+N,
|
|
66
|
+
# not 60+N. Always analyze slices before programming drums.
|
|
67
|
+
|
|
68
|
+
dimensional_impact:
|
|
69
|
+
structural: low
|
|
70
|
+
rhythmic: high # breaks + chops ARE rhythm
|
|
71
|
+
timbral: moderate
|
|
72
|
+
spatial: low
|
|
73
|
+
|
|
74
|
+
appears_in_packets:
|
|
75
|
+
artists:
|
|
76
|
+
- villalobos
|
|
77
|
+
- akufen
|
|
78
|
+
- j-dilla
|
|
79
|
+
- dj-premier-rza
|
|
80
|
+
- madlib
|
|
81
|
+
- burial
|
|
82
|
+
- photek-source-direct
|
|
83
|
+
- rashad-spinn-traxman
|
|
84
|
+
- moodymann-theo-parrish
|
|
85
|
+
- boards-of-canada
|
|
86
|
+
- daft-punk
|
|
87
|
+
- basic-channel
|
|
88
|
+
genres:
|
|
89
|
+
- microhouse
|
|
90
|
+
- deep-minimal
|
|
91
|
+
- hip-hop
|
|
92
|
+
- dubstep
|
|
93
|
+
- drum-and-bass
|
|
94
|
+
- footwork
|
|
95
|
+
- uk-garage
|
|
96
|
+
- house
|
|
97
|
+
|
|
98
|
+
notes: |
|
|
99
|
+
Simpler is the single most-referenced instrument across the concept
|
|
100
|
+
catalog — it appears in 12 artist packets and 8 genre packets. It is
|
|
101
|
+
the LivePilot default for any sample-based creative work.
|
|
102
|
+
|
|
103
|
+
Critical gotchas (per CLAUDE.md memory):
|
|
104
|
+
- Default Volume is -12 dB. Set to 0 for sustained / melodic use.
|
|
105
|
+
- Snap bug: Snap MUST be OFF after load_sample_to_simpler or silent.
|
|
106
|
+
- Slice mode maps to MIDI 36+N (C1), not 60+N (C3).
|
|
107
|
+
- Always use `load_browser_item` with a browser URI, NOT
|
|
108
|
+
`replace_simpler_sample` or `load_sample_to_simpler` — those two
|
|
109
|
+
silently fail and keep the kick bootstrap.
|
|
110
|
+
|
|
111
|
+
See atlas signature_techniques for recipes: "J Dilla micro-timed kit",
|
|
112
|
+
"Vocal micro-chop (Akufen)", "Villalobos sub-bass layer",
|
|
113
|
+
"slice_and_sequence".
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
id: utility
|
|
2
|
+
name: Utility
|
|
3
|
+
type: utility
|
|
4
|
+
category: utility
|
|
5
|
+
aliases:
|
|
6
|
+
- "utility"
|
|
7
|
+
atlas_search_query: "Utility"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- mono-ize sub-bass below a frequency (dub-techno, house, EDM)
|
|
11
|
+
- gain staging on individual tracks
|
|
12
|
+
- phase-flip for stereo correction
|
|
13
|
+
- width control (narrow / wide)
|
|
14
|
+
- DC-offset elimination
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- narrowing sub-bass to mono under 80-100 Hz (mono-compatibility)
|
|
18
|
+
- precise track gain adjustment (dB, not normalized 0-1)
|
|
19
|
+
- phase flipping when stacking similar sources
|
|
20
|
+
- '"Bass Mono" for club playback'
|
|
21
|
+
- simple gain staging before other effects
|
|
22
|
+
|
|
23
|
+
risky_for:
|
|
24
|
+
- when used as a general "effect" — Utility does exactly what it says and nothing else
|
|
25
|
+
- attempting to use for EQ (Utility has no frequency shaping; use EQ Eight)
|
|
26
|
+
- trying to replace EQ Eight's width control (Utility's width is coarser)
|
|
27
|
+
|
|
28
|
+
subtle_ranges:
|
|
29
|
+
gain: [-3, 3] # dB
|
|
30
|
+
width: [0.9, 1.0] # narrow to slightly-narrow
|
|
31
|
+
bass_mono_freq: [30, 80] # Hz
|
|
32
|
+
moderate_ranges:
|
|
33
|
+
gain: [-6, 6]
|
|
34
|
+
width: [0.5, 0.9]
|
|
35
|
+
bass_mono_freq: [80, 150]
|
|
36
|
+
aggressive_ranges:
|
|
37
|
+
gain: [-12, 12]
|
|
38
|
+
width: [0.0, 0.5] # mono to narrow
|
|
39
|
+
bass_mono_freq: [150, 350]
|
|
40
|
+
|
|
41
|
+
pairings:
|
|
42
|
+
- device: EQ Eight
|
|
43
|
+
order: after
|
|
44
|
+
purpose: after mono-summing, EQ the mono path
|
|
45
|
+
- device: Compressor
|
|
46
|
+
order: before
|
|
47
|
+
purpose: pre-compression gain staging
|
|
48
|
+
- device: Saturator
|
|
49
|
+
order: before
|
|
50
|
+
purpose: pre-saturation level control
|
|
51
|
+
|
|
52
|
+
anti_pairings: []
|
|
53
|
+
# Utility plays well with everything — it's genuinely utility.
|
|
54
|
+
|
|
55
|
+
remeasure:
|
|
56
|
+
- track_meters # gain changes reflect immediately
|
|
57
|
+
- mono_compatibility # when narrowing
|
|
58
|
+
- stereo_width # when narrowing
|
|
59
|
+
|
|
60
|
+
dimensional_impact:
|
|
61
|
+
structural: none
|
|
62
|
+
rhythmic: none
|
|
63
|
+
timbral: none # no tone shaping
|
|
64
|
+
spatial: moderate # width and mono affect placement
|
|
65
|
+
|
|
66
|
+
appears_in_packets:
|
|
67
|
+
artists:
|
|
68
|
+
- basic-channel
|
|
69
|
+
- hawtin
|
|
70
|
+
- villalobos
|
|
71
|
+
- gas
|
|
72
|
+
- basinski
|
|
73
|
+
- skream-mala
|
|
74
|
+
genres:
|
|
75
|
+
- dub-techno
|
|
76
|
+
- deep-minimal
|
|
77
|
+
- minimal-techno
|
|
78
|
+
- microhouse
|
|
79
|
+
- dubstep
|
|
80
|
+
- house
|
|
81
|
+
- uk-garage
|
|
82
|
+
|
|
83
|
+
notes: |
|
|
84
|
+
Utility is the most-ubiquitous utility in the catalog — 6 artist
|
|
85
|
+
packets and 7 genre packets. It's not a creative tool; it's the
|
|
86
|
+
plumbing that makes other creative tools sound professional.
|
|
87
|
+
|
|
88
|
+
Canonical dub-techno move: Utility on master or sub-bus with
|
|
89
|
+
"Bass Mono" at 80-100 Hz narrows the low end to mono for club
|
|
90
|
+
playback. This is so common it's often the FIRST mix move before
|
|
91
|
+
any creative work.
|
|
92
|
+
|
|
93
|
+
Also critical: when stacking two sub-bass sources (Bass + Drone Lab),
|
|
94
|
+
Utility's phase flip resolves cancellation issues before saturator
|
|
95
|
+
or EQ choices get blamed.
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
id: vinyl_distortion
|
|
2
|
+
name: Vinyl Distortion
|
|
3
|
+
type: effect
|
|
4
|
+
category: distortion
|
|
5
|
+
aliases:
|
|
6
|
+
- "vinyl distortion"
|
|
7
|
+
atlas_search_query: "Vinyl Distortion"
|
|
8
|
+
|
|
9
|
+
musical_roles:
|
|
10
|
+
- vinyl-era warmth on drum busses (Dilla, Premier, Madlib aesthetic)
|
|
11
|
+
- crackle and hiss as texture
|
|
12
|
+
- dusty hip-hop mix aesthetic
|
|
13
|
+
- lo-fi mix character
|
|
14
|
+
- aging digital sources (BoC, Burial)
|
|
15
|
+
|
|
16
|
+
strong_for:
|
|
17
|
+
- drum-bus dustiness (hip-hop / boom-bap)
|
|
18
|
+
- adding crackle to otherwise clean samples
|
|
19
|
+
- lo-fi aesthetic mix bus processing
|
|
20
|
+
- Burial atmospheric subtext (at -36 dB under track)
|
|
21
|
+
- BoC tape-warmth emulation
|
|
22
|
+
|
|
23
|
+
risky_for:
|
|
24
|
+
- pristine aesthetic contexts (ambient, modern-classical)
|
|
25
|
+
- club-system release masters (crackle = perceived as artifact)
|
|
26
|
+
- vocal-forward mixes (crackle fights vocal intelligibility)
|
|
27
|
+
- already-distorted material (compounded character)
|
|
28
|
+
|
|
29
|
+
subtle_ranges:
|
|
30
|
+
drive: [0.0, 0.15]
|
|
31
|
+
crackle: [0.0, 0.1]
|
|
32
|
+
pinch: [0.0, 0.2]
|
|
33
|
+
moderate_ranges:
|
|
34
|
+
drive: [0.15, 0.40]
|
|
35
|
+
crackle: [0.1, 0.35]
|
|
36
|
+
pinch: [0.2, 0.5]
|
|
37
|
+
aggressive_ranges:
|
|
38
|
+
drive: [0.40, 0.85]
|
|
39
|
+
crackle: [0.35, 1.0]
|
|
40
|
+
pinch: [0.5, 1.0]
|
|
41
|
+
|
|
42
|
+
pairings:
|
|
43
|
+
- device: Saturator
|
|
44
|
+
order: before
|
|
45
|
+
purpose: saturation into Vinyl Distortion for double-character warmth
|
|
46
|
+
- device: EQ Eight
|
|
47
|
+
order: after
|
|
48
|
+
purpose: shelf-cut highs if crackle is too bright
|
|
49
|
+
- device: Erosion
|
|
50
|
+
order: parallel
|
|
51
|
+
purpose: different noise-character stackable on same bus
|
|
52
|
+
|
|
53
|
+
anti_pairings:
|
|
54
|
+
- "Modern clean-aesthetic tracks (the character is anti-clean)"
|
|
55
|
+
- "Master-bus application without explicit lo-fi intent"
|
|
56
|
+
|
|
57
|
+
remeasure:
|
|
58
|
+
- spectral_balance # crackle adds high-end content
|
|
59
|
+
- low_headroom # drive pushes level
|
|
60
|
+
- track_meters
|
|
61
|
+
|
|
62
|
+
dimensional_impact:
|
|
63
|
+
structural: none
|
|
64
|
+
rhythmic: low
|
|
65
|
+
timbral: high
|
|
66
|
+
spatial: low
|
|
67
|
+
|
|
68
|
+
appears_in_packets:
|
|
69
|
+
artists:
|
|
70
|
+
- j-dilla
|
|
71
|
+
- dj-premier-rza
|
|
72
|
+
- madlib
|
|
73
|
+
- burial
|
|
74
|
+
- boards-of-canada
|
|
75
|
+
- moodymann-theo-parrish
|
|
76
|
+
genres:
|
|
77
|
+
- hip-hop
|
|
78
|
+
- microhouse
|
|
79
|
+
- dubstep
|
|
80
|
+
- downtempo
|
|
81
|
+
|
|
82
|
+
notes: |
|
|
83
|
+
Vinyl Distortion is the Dilla / Premier / Madlib dusty-drum-bus
|
|
84
|
+
signature. Moderate settings (drive 0.2-0.4, crackle 0.2-0.3) on
|
|
85
|
+
a drum bus give the hip-hop aesthetic.
|
|
86
|
+
|
|
87
|
+
For Burial: 100% wet on a dedicated crackle track sent at -36 dB
|
|
88
|
+
under the full mix is the canonical move. This creates the
|
|
89
|
+
perpetual vinyl-subtext atmosphere.
|
|
90
|
+
|
|
91
|
+
For BoC: subtle crackle (0.1) + moderate drive (0.2) on every
|
|
92
|
+
sustained element emulates tape warmth.
|