MIDI to TCP software

I just bought a MIDI control surface (Behringer BCF2000) for our theatre. I would like to be able to use some of its buttons and faders to send networks commands via TCP to various pieces of equipment on our local LAN (audio, video, switchers, etc). Do you know of some software that I could use to interface between MIDI and TCP?
 
I think of two options. It really depends on what devices need to receive the signal.

1) OSCulator. This can take in MIDI signals and convert them into OSC commands (the new network version of MIDI). Check it out. It's pretty easy. You can even download a fully functional demo.

2) If you can't use OSC, then you're probably looking at UDP commands. This is a deep step into nerds-ville, but you could use python code to achieve this. Here's a link to an example of that. Scroll down to the third post that starts with "Python is truly wonderful".
Run that code via Idle (if you're on a mac, you already have this). Just change the Note, Endpoint, and Message .... Copy the IF block of code for each MIDI command you need. And there you have it, you made your own custom piece of code! .... Well .... adapted .... let's say adapted.
 
The software-based solution I have is to use Dataton Watchout. Although it is a USB-licenced (dongled) software, this is not required when not outputting or communicating with what Dataton calls 'Display PCs' (essentially for fullscreen videos/pix). Other communications such as MIDI in (no MIDI out), RS232 in/out, and TCP/IP in/out works all the time.

Therefore, you would send MIDI in to trigger Auxilliary Timelines (created via the Task Window), with each Aux Timeline sending TCP/IP out to your other devices via string outputs or RS-232 commands in accordance with the device protocol and Dataton's protocol (RS-232 is prededed by $ with no spaces between codes, and usually ends with $0D or $13, the carriage return byte. String commands must be enclosed by '...' quote marks, and also ends with $0D).

ThomasL
 

Users who are viewing this thread

Back