fix: midi message parsing in front and remove delay in scorometer

This commit is contained in:
GitBluub
2023-05-22 14:42:18 +09:00
committed by Clément Le Bihan
parent 004ffa0be8
commit c5a7436e2c
2 changed files with 24 additions and 9 deletions

View File

@@ -76,7 +76,8 @@ class Scorometer:
def getPartition(self, midiFile: str):
notes = []
s = 3500
s = 3000
s = 0
notes_on = {}
prev_note_on = {}
for msg in MidiFile(midiFile):