Framework for scripting MIDI, keyboard and Open Sound Control input and output
Project description
MIDI Scripter
MIDI Scripter is a framework for filtering, modifying, routing and any other scripting of MIDI, Open Sound Control (OSC), keyboard and mouse input and output with Python.
MIDI Scripter monitors input ports and processes incoming messages by sending them to subscribed callables such as functions or methods. These callables, along with any other Python code, can send out modified or newly created messages through output ports. Essentially, MIDI Scripter serves as a proxy that can filter, transform, and convert incoming data.
In addition, MIDI Scripter features a customizable graphical user interface (GUI) that provides message logging, coding assistance, and various controls and indicators to use in the script.
An octave transposer with GUI controls in 10 lines of code:
from midiscripter import *
midi_keyboard = MidiIn('MIDI Keyboard') # GUI will provide you with port names
proxy_output = MidiOut('To DAW') # using virtual proxy port for output
# GUI control in a single line
octave_selector = GuiButtonSelectorH(('-2', '-1', '0', '+1', '+2'), select='0')
@midi_keyboard.subscribe # decorated function will receive port's messages
def transpose(msg: MidiMsg) -> None:
if msg.type == MidiType.NOTE_ON or msg.type == MidiType.NOTE_OFF: # filter
msg.data1 += 12 * int(octave_selector.selected_item_text) # modify
proxy_output.send(msg) # route
if __name__ == '__main__': # combine multiple scripts by importing them
start_gui() # opens helpful customizable GUI
The average measured roundtrip latency for the script above is less than 0.25 milliseconds.
Currently MIDI Scripter is at "beta" development stage. It's fully functional but needs more user feedback. It works on Windows and Linux and should work on macOS.
Documentation and Examples
Overview and full API documentation is available here.
You can find more examples here.
Features
Basic Functionality:
- Receive input messages from MIDI, OSC, keyboard and mouse.
- Filter, modify, and manipulate messages using Python.
- Send modified or newly generated MIDI, OSC, keyboard, and mouse messages.
For Music Performance MIDI Setups:
- Create additional banks and layers to enhance MIDI controllers.
- Organize mappings into sets or scenes using with GUI dashboard.
- Add overlay mappings on top of your MIDI controller’s DAW integration using proxies.
- Combine multiple MIDI controllers into a single unit with any logic.
- Control Ableton Live through a special remote script or AbletonOSC.
For Software Control and Automation:
- Map or convert messages to one another based on specific conditions and logic.
- Use MIDI controllers or keyboard shortcuts to run any Python code.
- Implement keyboard and mouse macros.
For Writing MIDI-Related Python Code:
- Prepare MIDI, OSC, keyboard, and mouse inputs and outputs with a single line of code, without boilerplate code.
- Use decorators to feed input messages to functions or other callables.
- Work with message objects rather than raw data, which varies by port type.
- Create GUI widgets with just one line of code and arrange them with mouse.
- Fully type-annotated API for better code clarity.
Installation
- Install Python 3.11+ including pip.
- Run
pip install midiscripter
.
Extra steps for Windows:
- Enable
Add python .exe to PATH
option in Python installer. - Install loopMIDI and set required virtual MIDI ports inside it.
Quick Start Guide
- Paste the script template into your Python IDE or a plain text editor. Using an IDE is recommended.
- Run the template script directly from the IDE or by
python your_script.py
. This will open the GUI (as shown in the screenshot below), providing information about available ports and incoming input. - Ensure that the “Show Unused Ports” button located under the port list is activated. Enable the checkboxes for any available ports to activate them, monitor the log for incoming messages.
- Click on the port names and messages in the log to copy their declarations to the clipboard. Paste the declarations into your script.
- Adjust the template function to achieve desired functionality. Use
log('messages')
for debugging purposes. - Restart the script from the GUI to see how it performs.
- Develop more complex scripts by utilizing additional inputs, outputs, and functions (callables). Subscribe callables to input messages using the
@input_port.subscribe
decorator.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file midiscripter-0.6.tar.gz
.
File metadata
- Download URL: midiscripter-0.6.tar.gz
- Upload date:
- Size: 85.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efe5a07e589905fae5bd7874ebe0649b82cd6b0e20a2a40d6ecc96c79be0f121 |
|
MD5 | caf64b115b3bb12d994060918ad5727a |
|
BLAKE2b-256 | 022082040c1aa6f8b45f3ab0554be039c3e783aebdfe72b840f8996a69a7bd65 |
File details
Details for the file midiscripter-0.6-py3-none-any.whl
.
File metadata
- Download URL: midiscripter-0.6-py3-none-any.whl
- Upload date:
- Size: 107.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74942ae33b87cb293dec049cb8756d48869b2a8f392ce645d2b636ca92ea0f79 |
|
MD5 | 1f90bec1046a5a8047bea54b514b4430 |
|
BLAKE2b-256 | 268b638c4049bf201dd501f402bfc0a410e7264640aea0b4ed5ef0106b17f8f4 |