作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我已经在使用 Web MIDI API 来监听消息的 MIDI 输入,现在我正在尝试理解和使用我接收到的数据。
如何从 MIDIMessageEvent
中解析一些基本信息?
如何解释一些基本 MIDI 事件的解析信息?
最佳答案
用 ES6 编写的示例。
MIDIMessageEvent
中的data
可以像这样用解析函数 拆分:
/**
* Parse basic information out of a MIDI message.
*/
function parseMidiMessage(message) {
return {
command: message.data[0] >> 4,
channel: message.data[0] & 0xf,
note: message.data[1],
velocity: message.data[2] / 127
}
}
给定一些事件函数来处理基本的 MIDI 事件:
function onNote(note, velocity) {}
function onPad(pad, velocity) {}
function onPitchBend(value) {}
function onModWheel(value) {}
我们可能会使用上面的解析函数来通过 MIDI 消息进行解释并调用上述事件函数:
/**
* Handle a MIDI message from a MIDI input.
*/
function handleMidiMessage(message) {
// Parse the MIDIMessageEvent.
const {command, channel, note, velocity} = parseMidiMessage(message)
// Stop command.
// Negative velocity is an upward release rather than a downward press.
if (command === 8) {
if (channel === 0) onNote(note, -velocity)
else if (channel === 9) onPad(note, -velocity)
}
// Start command.
else if (command === 9) {
if (channel === 0) onNote(note, velocity)
else if (channel === 9) onPad(note, velocity)
}
// Knob command.
else if (command === 11) {
if (note === 1) onModWheel(velocity)
}
// Pitch bend command.
else if (command === 14) {
onPitchBend(velocity)
}
}
处理程序附加到正确的 MIDI 输入:
midiInput.onmidimessage = handleMidiMessage
资源:
关于javascript - 如何解析 Web MIDI API 输入消息 (onmidimessage),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40902864/
假设我已经在使用 Web MIDI API 来监听消息的 MIDI 输入,现在我正在尝试理解和使用我接收到的数据。 如何从 MIDIMessageEvent 中解析一些基本信息? 命令 channel
我是一名优秀的程序员,十分优秀!