4 lines
80 B
Python
4 lines
80 B
Python
from mido import MidiFile
|
|
|
|
for msg in MidiFile('new_song_1.mid'):
|
|
print(msg) |