从主机内部通过网络发送 MIDI 数据
如何通过 LAN 将 VST 从主机应用程序(例如 Cubase)内部收到的 MIDI 数据发送到网络中的另一台计算机?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何通过 LAN 将 VST 从主机应用程序(例如 Cubase)内部收到的 MIDI 数据发送到网络中的另一台计算机?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
VST 插件框架不包含将 MIDI 从一个插件发送到另一个插件的内置解决方案。这也违背了 VST 插件的作用的假设。一般来说,VST 插件仅与主机应用程序通信。假设它们不会与其他插件或应用程序通信。
话虽这么说,您可以使用 OSC(开放声音控制) 以及您喜欢的任何 TCP/IP 网络库。
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.
不是 c++,而是 java - 这是我所知道的最接近的东西:
oscvstbridge
not c++ but java - it is the closest thing i know of though:
oscvstbridge