Culture Clash: comment out Nokia intro

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-30 04:15:20 -04:00
parent 34fbc39da2
commit c2ecfccddf
+14 -15
View File
@@ -36,21 +36,20 @@ MR = DrumSound.MARCH_SNARE
# Bars 57-64: Military snare crescendo, everything fades, final hit
# ═══════════════════════════════════════════════════════════════════
# ── INTRO — Nokia ringtone, bone dry, like a phone going off (bars 1-2)
intro = score.part("intro", synth="pulse", envelope="staccato", volume=0.35,
lowpass=4000)
# Quick Nokia lick — then silence before the world drops in
intro.add(E.add(12), Duration.EIGHTH, velocity=95)
intro.add(D.add(12), Duration.EIGHTH, velocity=90)
intro.add(Tone.from_string("F#4"), Duration.QUARTER, velocity=88)
intro.add(Tone.from_string("G#4"), Duration.QUARTER, velocity=85)
intro.add(Tone.from_string("C#5"), Duration.EIGHTH, velocity=90)
intro.add(Tone.from_string("B4"), Duration.EIGHTH, velocity=85)
intro.add(D, Duration.QUARTER, velocity=82)
intro.add(E, Duration.QUARTER, velocity=80)
intro.rest(Duration.WHOLE) # phone stops... silence... then the world drops in
for _ in range(62):
intro.rest(Duration.WHOLE)
# # ── INTRO — Nokia ringtone (commented out)
# intro = score.part("intro", synth="pulse", envelope="staccato", volume=0.35,
# lowpass=4000)
# intro.add(E.add(12), Duration.EIGHTH, velocity=95)
# intro.add(D.add(12), Duration.EIGHTH, velocity=90)
# intro.add(Tone.from_string("F#4"), Duration.QUARTER, velocity=88)
# intro.add(Tone.from_string("G#4"), Duration.QUARTER, velocity=85)
# intro.add(Tone.from_string("C#5"), Duration.EIGHTH, velocity=90)
# intro.add(Tone.from_string("B4"), Duration.EIGHTH, velocity=85)
# intro.add(D, Duration.QUARTER, velocity=82)
# intro.add(E, Duration.QUARTER, velocity=80)
# intro.rest(Duration.WHOLE)
# for _ in range(62):
# intro.rest(Duration.WHOLE)
# ── DRUMS — four on the floor, snare on 2 & 4, trap hats ───────
drums = score.part("kit", volume=0.65, humanize=0.06)