diff --git a/docs/_static/audio/metal_blast.wav b/docs/_static/audio/metal_blast.wav index 2e8e06b..7eca53b 100644 Binary files a/docs/_static/audio/metal_blast.wav and b/docs/_static/audio/metal_blast.wav differ diff --git a/docs/generate_audio.py b/docs/generate_audio.py index cc6f571..cbbcac7 100644 --- a/docs/generate_audio.py +++ b/docs/generate_audio.py @@ -193,9 +193,9 @@ def gen_tabla(): def gen_metal_blast(): score = Score("4/4", bpm=190) - # Showcase all metal patterns: groove → gallop → blast → cascade fill + # Showcase all metal patterns: groove → gallop → triplet fill → blast score.drums("metal groove", repeats=2) - score.drums("metal gallop", repeats=2, fill="metal triplet", fill_every=2) + score.drums("metal gallop", repeats=4, fill="metal triplet", fill_every=4) score.drums("metal blast", repeats=2, fill="metal cascade", fill_every=2) score.drums("double kick", repeats=2, fill="metal blast", fill_every=2) render("metal_blast", score)