Last active
November 13, 2022 04:28
-
-
Save SpotlightKid/91c008e7fb32f55eccb6c6f64298b4c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import logging | |
import sys | |
import time | |
from rtmidi.midiutil import open_midioutput | |
from rtmidi.midiconstants import * | |
log = logging.getLogger("midi-send-all") | |
argp = argparse.ArgumentParser() | |
argp.add_argument("-v", "--verbose", action="store_true", help="Verbose output") | |
argp.add_argument("-d", "--delay", type=float, default=0.05, help="Delay between messages") | |
argp.add_argument("-V", "--velocity", type=int, default=127, help="Note on velocity") | |
argp.add_argument("-o", "--off-velocity", type=int, default=64, help="Note off velocity") | |
argp.add_argument("port", nargs="?", help="MIDI output port") | |
args = argp.parse_args() | |
logging.basicConfig(level=logging.DEBUG if args.verbose else logging.INFO) | |
midiout, name = open_midioutput() | |
for chan in range(16): | |
for note in range(128): | |
log.debug(f"Sending NOTE ON, ch={chan+1}, note={note}, vel={args.velocity}.") | |
midiout.send_message([NOTE_ON | chan, note, args.velocity]) | |
time.sleep(args.delay) | |
log.debug(f"Sending NOTE OFF, ch={chan+1}, note={note}, vel={args.off_velocity}.") | |
midiout.send_message([NOTE_OFF | chan, note, args.off_velocity]) | |
time.sleep(args.delay) | |
for chan in range(16): | |
for cc in range(128): | |
for val in range(128): | |
log.debug(f"Sending CONTROL_CHANGE, ch={chan+1}, cc={cc}, val={val}.") | |
midiout.send_message([CONTROL_CHANGE | chan, cc, val]) | |
time.sleep(args.delay) | |
log.debug("Done.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For JACK output, set
RTMIDI_API=UNIX_JACK
in environment.