Faster timpani roll: 140bpm + 32nd notes

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-29 16:24:57 -04:00
parent b9ee5c9cde
commit 16b4c7d1fa
2 changed files with 3 additions and 3 deletions
Binary file not shown.
+3 -3
View File
@@ -579,12 +579,12 @@ def gen_synth_upright_bass():
render("synth_upright_bass", score)
def gen_synth_timpani():
score = Score("4/4", bpm=80)
score = Score("4/4", bpm=140)
timp = score.part("timp", synth="timpani_synth", volume=0.5, reverb=0.25)
timp.roll("C3", Duration.WHOLE, velocity_start=20, velocity_end=110)
timp.roll("C3", Duration.WHOLE, velocity_start=20, velocity_end=110, speed=0.125)
timp.add("C3", Duration.HALF, velocity=127)
timp.rest(Duration.HALF)
timp.roll("G2", Duration.WHOLE, velocity_start=20, velocity_end=110)
timp.roll("G2", Duration.WHOLE, velocity_start=20, velocity_end=110, speed=0.125)
timp.add("G2", Duration.HALF, velocity=127)
render("synth_timpani", score)