MIDIMessageEvent - Web APIs 编辑
Experimental
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The MIDIMessageEvent
interface of the Web MIDI API represents the event passed to the onmidimessage
event handler of the MIDIInput
interface. A midimessage
event is fired every time a MIDI message is sent from a device represented by a MIDIInput
, for example when a MIDI keyboard key is pressed, a knob is tweaked, or a slider is moved.
Constructor
MIDIMessageEvent.MIDIMessageEvent
- Creates a new
MIDIMessageEvent
object instance.
Properties
MIDIConnectionEvent.data
- A
Uint8Array
containing the data bytes of a single MIDI message. See the MIDI specification for more information on its form.
Note: Even though the Web MIDI API specifies a receivedTime
property that returns a DOMHighResTimeStamp
, Chrome (the only implementation at the time of writing) does not support that property since the basic Event.timeStamp
property already returns a DOMHighResTimeStamp
in Chrome.
Examples
// Printing all messages to console
navigator.requestMIDIAccess().then(midiAccess => {
Array.from(midiAccess.inputs).forEach(input => {
input[1].onmidimessage = (msg) => { console.log(msg); }
})
});
Specifications
Specification | Status | Comment |
---|---|---|
Web MIDI API The definition of 'MIDIMessageEvent' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论