diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-09 19:46:57 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-09 19:46:57 +0100 |
| commit | 12378b1b7e9091ba59895b4360b2fa959180a56a (patch) | |
| tree | 18d67cf1be39fbc3e4d54a9bf1c3bbbfc9d93280 /workspaces | |
| parent | 5f1244848ee1eaad7218840f268c36e64464eebc (diff) | |
fix: Reduce default audio volumes to prevent clipping
Reduced tracker pattern volumes:
- Kicks: 1.0 → 0.7
- Snares: 1.0/0.9 → 0.6
- Crash: 0.85 → 0.6
Multiple simultaneous voices were summing to excessive levels.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'workspaces')
| -rw-r--r-- | workspaces/main/music.track | 20 | ||||
| -rw-r--r-- | workspaces/test/music.track | 18 |
2 files changed, 19 insertions, 19 deletions
diff --git a/workspaces/main/music.track b/workspaces/main/music.track index c58ae8c..88a203a 100644 --- a/workspaces/main/music.track +++ b/workspaces/main/music.track @@ -22,26 +22,26 @@ SAMPLE ASSET_RIDE_1 # === KICK PATTERNS === # Steady kick on beats 0 and 2 (quarter notes) PATTERN kick_1 LENGTH 1.0 - 0.00, ASSET_KICK_1, 1.0, 0.0 - 0.50, ASSET_KICK_1, 1.0, 0.0 + 0.00, ASSET_KICK_1, 0.7, 0.0 + 0.50, ASSET_KICK_1, 0.7, 0.0 PATTERN kick_2 LENGTH 1.0 - 0.00, ASSET_KICK_2, 1.0, 0.0 - 0.50, ASSET_KICK_2, 1.0, 0.0 + 0.00, ASSET_KICK_2, 0.7, 0.0 + 0.50, ASSET_KICK_2, 0.7, 0.0 # === SNARE PATTERNS === # Steady snare on beats 1 and 3 (backbeat) PATTERN snare_1 LENGTH 1.0 - 0.25, ASSET_SNARE_1, 1.0, 0.0 - 0.75, ASSET_SNARE_1, 1.0, 0.0 + 0.25, ASSET_SNARE_1, 0.6, 0.0 + 0.75, ASSET_SNARE_1, 0.6, 0.0 PATTERN snare_2 LENGTH 1.0 - 0.25, ASSET_SNARE_2, 1.0, 0.0 - 0.75, ASSET_SNARE_2, 1.0, 0.0 + 0.25, ASSET_SNARE_2, 0.6, 0.0 + 0.75, ASSET_SNARE_2, 0.6, 0.0 PATTERN snare_3 LENGTH 1.0 - 0.25, ASSET_SNARE_3, 1.0, 0.0 - 0.75, ASSET_SNARE_3, 1.0, 0.0 + 0.25, ASSET_SNARE_3, 0.6, 0.0 + 0.75, ASSET_SNARE_3, 0.6, 0.0 # === RIDE PATTERN === # Ride cymbal on every beat (quarter notes) diff --git a/workspaces/test/music.track b/workspaces/test/music.track index 939d6d1..c8dac63 100644 --- a/workspaces/test/music.track +++ b/workspaces/test/music.track @@ -12,19 +12,19 @@ SAMPLE ASSET_SNARE_1 SAMPLE ASSET_CRASH_1 PATTERN drums_basic LENGTH 1.0 - 0.00, ASSET_KICK_1, 1.0, 0.0 + 0.00, ASSET_KICK_1, 0.7, 0.0 0.00, NOTE_A4, 0.5, 0.0 - 0.25, ASSET_SNARE_1, 0.9, 0.0 - 0.50, ASSET_KICK_1, 1.0, 0.0 - 0.75, ASSET_SNARE_1, 0.9, 0.0 + 0.25, ASSET_SNARE_1, 0.6, 0.0 + 0.50, ASSET_KICK_1, 0.7, 0.0 + 0.75, ASSET_SNARE_1, 0.6, 0.0 PATTERN drums_with_crash LENGTH 1.0 - 0.00, ASSET_KICK_1, 1.0, 0.0 - 0.00, ASSET_CRASH_1, 0.85, 0.0 + 0.00, ASSET_KICK_1, 0.7, 0.0 + 0.00, ASSET_CRASH_1, 0.6, 0.0 0.00, NOTE_A4, 0.5, 0.0 - 0.25, ASSET_SNARE_1, 0.9, 0.0 - 0.50, ASSET_KICK_1, 1.0, 0.0 - 0.75, ASSET_SNARE_1, 0.9, 0.0 + 0.25, ASSET_SNARE_1, 0.6, 0.0 + 0.50, ASSET_KICK_1, 0.7, 0.0 + 0.75, ASSET_SNARE_1, 0.6, 0.0 SCORE 0.0, drums_basic |
