iPhone 作为 Midi 控制器
我正在尝试为我的 iPhone 创建一个应用程序,使手机能够充当硬件接口,通过 midi 映射控制我的计算机上的软件。例如,将 Ableton/Traktor 等软件中的提示按钮分配到手机上控制的 GUI 界面上。
我知道以前的版本已经创建,例如 ITM Matrix http://www .itouchmidi.com/?q=node/5。我一直在使用这个应用程序,但我希望实现一些变体,因此我认为最好的学习方法是从头开始。尽管我的编程技能有限,但我希望这项任务不会太困难,并且非常感谢任何有关如何最好地启动和运行该任务的建议。
干杯
迈克
I'm attempting to create an application for my iPhone to enable the phone to act as a hardware interface to control software on my computer through midi mapping. For example to assign cue buttons in software such as Ableton/Traktor onto a GUI interface controlled on the Phone.
I am aware that previous versions of this have been created, such as the ITM Matrix http://www.itouchmidi.com/?q=node/5. I have been using this application but I have some variations i wish to implement so figured the best way to learn would be to start from scratch. Though my programming skills are limited I'm hoping this task shouldn't be too difficult and would appreciate any advice in how best to get this up and running.
Cheers
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你缺乏编程经验,你将会遇到困难。但这里是关于核心MIDI框架 在 iOS 中,您将需要它。
You are going to have a difficult time with little programming experience. But here is the documentation on the Core MIDI Framework in iOS which you are going to need.
我也决定编写自己的 iPhone MIDI 控制器应用。
真正最有帮助的是这个由五部分组成的博客文章系列,它确实有助于理解Core MIDI 在 iOS 上的工作原理< /a>.
I decided to write my own iPhone MIDI Controller app too.
What really helped the most was this five part blog post series that really helped to understand how Core MIDI works on iOS.
有一些名为 PGMidi 的开源代码 (http://goodliffe.blogspot。 com/2011/02/pgmidi-updated.html),这是使用核心 midi 在 iOS 上发送和接收 midi 的一个很好的示例。他有一个可行的示例,您可以尝试修改。
There is a bit of open source code called PGMidi (http://goodliffe.blogspot.com/2011/02/pgmidi-updated.html) that is a good example of sending and receiving midi on iOS using core midi. He has a working example that you could try tinkering with.