This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The send() method of the MIDIOutput interface queues messages for the corresponding MIDI port. The message can be sent immediately, or with an optional timestamp to delay sending.
send(data) send(data, timestamp)
dataA sequence of one or more valid MIDI messages. Each entry represents a single byte of data.
timestamp OptionalA DOMHighResTimestamp with the time in milliseconds when the message should be sent (relative to Performance.timeOrigin).
None (undefined).
TypeErrorThrown if data is not a valid sequence, or does not contain a valid MIDI message.
InvalidAccessError DOMException
Thrown if data is a system exclusive message, and the MIDIAccess did not enable exclusive access.
InvalidStateError DOMException
Thrown if the port is disconnected.
In the following example a middle C note is sent immediately, followed by a note off message one second later.
function sendMiddleC(midiAccess, portID) {
const noteOnMessage = [0x90, 60, 0x7f]; // Note on middle C, full velocity
const output = midiAccess.outputs.get(portID);
output.send(noteOnMessage); // Omitting the timestamp means send immediately.
output.send([0x80, 60, 0x40], window.performance.now() + 1000.0); // timestamp = now + 1000ms.
}
| Specification |
|---|
| Web MIDI API> # dom-midioutput-send> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
send |
43 | 79 | 108 | 30 | No | 43 | No | 30 | No | 4.0 | 43 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MIDIOutput/send