0

How could I send MIDI data received be a VST from inside a Host application (Cubase, for example) over LAN to another computer in the network?

Gustavo Mori
  • 8,319
  • 3
  • 38
  • 52
  • 1
    You should leave the network side of things up to the host application. There are many solutions for sending MIDI for a network. For example, Tobias Erichsen's rtpMIDI will work well for this: http://www.tobias-erichsen.de/rtpMIDI.html – Brad May 27 '11 at 16:26

2 Answers2

1

The VST plugin framework does not include an inbuilt solution to send MIDI from one plugin to another. It also goes against the assumption of what VST plugins do. Generally VST plugins only communicate with the host application. It is assumed they will not communicate with other plugins or applications.

That being said you could use OSC (Open Sound Control) and whatever TCP/IP networking library you are comfortable with.

Shannon Matthews
  • 9,649
  • 7
  • 44
  • 75
0

not c++ but java - it is the closest thing i know of though: oscvstbridge

jitter
  • 434
  • 8
  • 16