-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmidi_multiplex.py
43 lines (36 loc) · 1.21 KB
/
midi_multiplex.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'''
Add overlaping notes to a midi file, automatically creating new tracks when necessary.
'''
import typing as tp
import pretty_midi
class TrackStillBusy(Exception): pass
class MidiMultiplex:
'''
This implementation is only efficient if the notes are added in order of their start time.
'''
def __init__(self) -> None:
self.midi = pretty_midi.PrettyMIDI()
self.tracks: tp.List[Track] = []
def add(self, note: pretty_midi.Note):
for track in self.tracks:
try:
track.add(note)
except TrackStillBusy:
pass
else:
return
track = Track(self.midi)
track.add(note)
self.tracks.append(track)
def get(self):
return self.midi
class Track:
def __init__(self, midi: pretty_midi.PrettyMIDI) -> None:
self.instrument = pretty_midi.Instrument(0) # piano
self.busy_until = [0.0] * 128
midi.instruments.append(self.instrument)
def add(self, note: pretty_midi.Note):
if note.start < self.busy_until[note.pitch]:
raise TrackStillBusy()
self.busy_until[note.pitch] = note.end
self.instrument.notes.append(note)