File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -88,11 +88,14 @@ def file_open_dialogue():
88
88
def set_midi_channel_titles (MIDI_file ):
89
89
#dict_midi_channels dictionary is filled with the channel of each track name.
90
90
global dict_midi_channels
91
+ dict_midi_channels = {}
91
92
track_name = "Untitled"
92
93
for msg in MIDI_file :
93
94
if msg .type == "track_name" :
94
95
track_name = msg .name
95
- elif msg .is_cc ():#This might grab control changes unrelated to tracks? Not sure, may be an issue later and this should be refined.
96
+ #This might grab control changes unrelated to tracks? Not sure, may be an issue later and this should be refined.
97
+ #Update 20250125: Only control change 0 is used for bank select, which serves a similar purpose to a program change.
98
+ elif (msg .type == "control_change" and msg .control == 0 ) or msg .type == "program_change" :
96
99
channel = msg .channel
97
100
if channel not in dict_midi_channels :
98
101
dict_midi_channels [channel ] = ('Channel {}: {}' .format (channel , track_name ))
You can’t perform that action at this time.
0 commit comments