Upload midi_to_colab_audio.py
Browse files- midi_to_colab_audio.py +4 -2
midi_to_colab_audio.py
CHANGED
@@ -3323,7 +3323,8 @@ def midi_opus_to_colab_audio(midi_opus,
|
|
3323 |
|
3324 |
elif name in ("sysex_f0", "sysex_f7"):
|
3325 |
raw_bytes = data[0]
|
3326 |
-
fl.sysex(raw_bytes)
|
|
|
3327 |
|
3328 |
# Meta events & others—no direct audio effect, so we skip or log
|
3329 |
elif name in (
|
@@ -3485,7 +3486,8 @@ def midi_to_colab_audio(midi_file,
|
|
3485 |
|
3486 |
elif name in ("sysex_f0", "sysex_f7"):
|
3487 |
raw_bytes = data[0]
|
3488 |
-
fl.sysex(raw_bytes)
|
|
|
3489 |
|
3490 |
# Meta events & others—no direct audio effect, so we skip or log
|
3491 |
elif name in (
|
|
|
3323 |
|
3324 |
elif name in ("sysex_f0", "sysex_f7"):
|
3325 |
raw_bytes = data[0]
|
3326 |
+
# fl.sysex(raw_bytes)
|
3327 |
+
pass
|
3328 |
|
3329 |
# Meta events & others—no direct audio effect, so we skip or log
|
3330 |
elif name in (
|
|
|
3486 |
|
3487 |
elif name in ("sysex_f0", "sysex_f7"):
|
3488 |
raw_bytes = data[0]
|
3489 |
+
# fl.sysex(raw_bytes)
|
3490 |
+
pass
|
3491 |
|
3492 |
# Meta events & others—no direct audio effect, so we skip or log
|
3493 |
elif name in (
|