CoreMidi.framework发送midi命令
有一个名为 FreeStyler 的应用程序,您可以使用 midi 命令进行控制。在我的 Mac 应用程序中,我想发送 MIDI 信号。
有人可以举个例子吗?
以利亚
there is an app called FreeStyler, that you can control using midi commands. In my mac app I want to send midi signals.
Can someone show an example of this?
Elijah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是向我的 blofeld 合成器发送一条消息所需要的。我希望它有帮助。您可以使用 MIDIObjectGetProperties 查找连接到 Mac 的所有 MIDI 设备的唯一 ID。
This is what it took to send a note to my blofeld synth. I hope it helps. You can use MIDIObjectGetProperties to find the uniqueIDs for all the midi devices connected to your mac.
您的应用程序将需要使用 CoreMIDI 框架来发送或接收 MIDI,我可以根据经验告诉您,直接使用它并不是很有趣。您可能想尝试 vvopensource 框架,它是专为 cocoa 设计的 MIDI 框架。
Your application will need to use the CoreMIDI framework to send or receive MIDI, which I can tell you from experience is not a lot of fun to work with directly. You might want to try the vvopensource framework, which is a MIDI framework designed for cocoa.