Reputation: 1
I want to connect a GUI I developed in Processing via OSC/MIDI with software that receives OSC/MIDI (Resolume Arena, Ableton, TouchDesigner, etc) in my local machine. The problem is that I want people to choose what they want to connect to, and instead of setting up IP and PORT, they just choose the application they want to talk to.
So, I imagine I will need to list the ports and applications that are listening or waiting for OSC/MIDI to arrive, but I don't know how to make this. All the OSC monitors that I found (i.e OSC Data Monitor), check the sent OSC messages, but I wanna know what applications and ports are able to receive them.
Upvotes: 0
Views: 194
Reputation: 163538
For OSC, you can't. There are no real standards for OSC service discovery.
For MIDI, you can enumerate the MIDI ports on the device, but there are no standards to know what is connected on the other end.
Upvotes: 1