Glorified Metronome
Project description
python-music-drummer
Glorified Metronome
The methods of this package depend upon music21.
SYNOPSIS
from music_drummer import Drummer
from music21 import instrument
d = Drummer()
d.set_instrument('kick', 'kick2') # change to the electric kick
d.set_instrument('snare', 'snare2') # change to the electric snare
d.set_instrument('crash', 'crash1') # add a crash
d.set_bpm(99) # change the beats per minute from 120
d.set_ts('5/8') # change the time signature from 4/4
d.count_in(2) # count-in on the hi-hats for 2 measures
d.rest('kick', duration=10)
d.rest('snare', duration=10)
d.rest('crash', duration=10)
# add a eighth-note snare flam to the score
d.note('snare', duration=1/2, flam=1/16)
d.rest('kick', duration=1/2)
d.rest('hihat', duration=1/2)
d.rest('crash', duration=1/2)
# add a 5-note snare roll for an eighth-note, increasing in volume
d.roll('snare', duration=1/2, subdivisions=5, crescendo=[100, 127])
d.rest('kick', duration=1/2)
d.rest('hihat', duration=1/2)
d.rest('crash', duration=1/2)
# crash and kick!
d.note('kick', duration=1/2)
d.note('crash', duration=1/2)
d.rest('snare', duration=1/2)
d.rest('hihat', duration=1/2)
# add an eighth-note phrase of 3 parts, to the score
for _ in range(4):
d.pattern(
patterns={
'kick': '1000000010',
'snare': '0000001000',
'hihat': '1111111111',
'crash': '1000000000',
},
duration=1/2
)
d.sync_parts() # make the parts play simultaneously
d.score.show() # or text, midi, etc. see music21 docs
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
music_drummer-0.1.11.tar.gz
(55.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file music_drummer-0.1.11.tar.gz.
File metadata
- Download URL: music_drummer-0.1.11.tar.gz
- Upload date:
- Size: 55.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
995375ea13310cde0b103423860b7d9e21a4bcbb832636dbb4008284d7e35896
|
|
| MD5 |
d4f36dda25203467c585c7d233d6e1bc
|
|
| BLAKE2b-256 |
6e597c3ed7dba83d6d261ca5d12fd9dc2de65aaa730339cf27f73bccd330d0bf
|
File details
Details for the file music_drummer-0.1.11-py3-none-any.whl.
File metadata
- Download URL: music_drummer-0.1.11-py3-none-any.whl
- Upload date:
- Size: 46.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d0a31ebfa0769e168eae6ac675affadc1440e3db8fc1059077a140099fde88e
|
|
| MD5 |
d134e2f3e3b367f87abce206f070bd75
|
|
| BLAKE2b-256 |
d3583e6da847b7c175cb5e466c1fd916da96574c119baee06d065ba34ff1f5e5
|