如何用 MIDI 写和弦?
如何写一个和弦,即在同一时间线上有多个音符的 NoteOn?
该和弦的消息应该是什么。
How do I write a chord, i.e. a NoteOn of seveal notes on each above the other at the same time line?
What should be the message for this chord.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MIDI 是一种串行接口,因此您实际上无法同时发送两个“Note On”命令 - 您实际上是一个接一个地发送它们,但延迟足够低,尽管它们开始按顺序播放,但耳朵无法检测到延迟。
MIDI is a serial interface, so you can't actually send two 'Note On' commands at the same time - you physically send them one after the other, but the latency is low enough that although they start playing sequentially, the ear cannot detect the delay.
您还可以使用 MIDI SYSEX。 SYSEX 消息的语法因合成器而异,例如 Yamaha PSR 系列键盘使用 XF 和弦事件(基于 SYSEX)。
You can also use MIDI SYSEX. Syntax of SYSEX Message vary from synthesizer to synthesizer, for instance Yamaha PSR Series Keyboard uses XF Chord Events (which is SYSEX based).