Firefox Tomorrow

web api interface

MIDIMessageEvent

View on MDN ↗

Secure context

The MIDIMessageEvent interface of the Web MIDI API represents the event passed to the midimessage event 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

Instance properties

This interface also inherits properties from Event.

Instance methods

This interface doesn’t implement any specific methods, but inherits methods from Event.

Examples

The following example prints all MIDI messages to the console.

navigator.requestMIDIAccess().then((midiAccess) => {
  Array.from(midiAccess.inputs).forEach((input) => {
    input[1].onmidimessage = (msg) => {
      console.log(msg);
    };
  });
});

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.