web api interface
MIDIInput
Secure context
The MIDIInput interface of the Web MIDI API receives messages from a MIDI input port.
Instance properties
This interface doesn’t implement any specific properties, but inherits properties from MIDIPort.
Instance methods
This interface doesn’t implement any specific methods, but inherits methods from MIDIPort.
Events
midimessage- : Fired when the current port receives a MIDI message.
Examples
In the following example the name of each MIDIInput is printed to the console. Then, midimessage events are listened for on all input ports. When a message is received the data property is printed to the console.
inputs.forEach((input) => {
console.log(input.name); /* inherited property from MIDIPort */
input.onmidimessage = (message) => {
console.log(message.data);
};
});
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.