我想将 MIDI 钢琴键盘插入计算机的 USB 端口,并通过在浏览器中显示某些内容来响应按键事件。
有谁知道允许 JavaScript 与前端/浏览器中的 USB MIDI 键盘事件交互的库?
类似于:
链接到 index.html 的 script.js 文件:
$(document).on('midi-key-press', function(event) {
alert('the key that you pressed was ' + event.whichKey);
});
谢谢!