Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 813 Bytes

windows-devices-midi.md

File metadata and controls

17 lines (12 loc) · 813 Bytes
uid
Uno.Features.WDMidi

MIDI

MIDI device input and output are supported across iOS, Android, macOS, and WebAssembly.

To see how to implement MIDI support in your application, you can follow the sample project provided in the UWP samples repository. This shows MIDI device enumeration, various forms of input as well as output.

In the case of WebAssembly, an additional security check is required to be able to receive/send system-exclusive MIDI messages. If you require this functionality, please set the WinRTFeatureConfiguration.Midi.RequestSystemExclusiveAccess flag early in the application lifecycle.

#if __WASM__
WinRTFeatureConfiguration.Midi.RequestSystemExclusiveAccess = true;
#endif