Skip to content

Commit 420b5b9

Browse files
committed
Fix track/channel importer
Now interprets program change and control change 0 as triggers for linking a track to a channel
1 parent 606470b commit 420b5b9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

YTPMVE_UI.pyw

+4-1
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,14 @@ def file_open_dialogue():
8888
def set_midi_channel_titles(MIDI_file):
8989
#dict_midi_channels dictionary is filled with the channel of each track name.
9090
global dict_midi_channels
91+
dict_midi_channels = {}
9192
track_name = "Untitled"
9293
for msg in MIDI_file:
9394
if msg.type == "track_name":
9495
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":
9699
channel = msg.channel
97100
if channel not in dict_midi_channels:
98101
dict_midi_channels[channel] = ('Channel {}: {}'.format(channel, track_name))

0 commit comments

Comments
 (0)