Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect if a MIDI interface is connected in Web MIDI API

I am experimenting with the Web Midi API in Chrome/OS X. So far I get good results but I am wondering:

Is there a way to detect if a MIDI interface is connected/disconnected WHILE an application is running?

The way it works for now is to restart the browser to let the application know that an interface is present or not ...

There seems to be a MIDIAccess onconnect / ondisconnect event but I don't know what to do to make them fire. Is this implemented yet in Chrome (Canary)?

like image 700
solitud Avatar asked Mar 21 '23 22:03

solitud


1 Answers

The current implementation in Chrome has two shortcomings - it requires the browser to be rebooted to detect device changes, and it doesn't yet support the connect/disconnect events. Both of those problems will be fixed, but right now, you can't do what you're trying to do. (AKA - you're understanding the spec correctly, but Chrome just doesn't do that yet. :)

UPDATE MAY 2015: Chrome 43 supports both of these properly, so as of version 43 you should be able to have these work as specified.

like image 89
cwilso Avatar answered Mar 31 '23 12:03

cwilso