Reputation: 1
I am looking to write a small program that receives input from an external device and then sends MIDI signals to any MIDI compatible software. What is the best way, from the MIDI perspective, to go about this? Are there any specific libraries I should look into?
Thanks.
Upvotes: 0
Views: 1233
Reputation: 353
MIDI protocol is quite simple, most MIDI APIs offer manipulation with MIDI events and their parameters. What differs is the way how MIDI devices are enumerated and opened.
Correct answer depends on your requirements.
With more question details more libraries (or less libraries) can be recommended.
Upvotes: 0
Reputation: 130
PortMidi! http://portmedia.sourceforge.net/
It's easy to use, examples for Windows are provided.
Upvotes: 1