我熟悉C ++和MIDI协议,但我是javascript的初学者。 我已经从下面的git hub成功运行了Basic.html https://github.com/mudcube/MIDI.js/blob/master/examples/Basic.html示例:
<body>
<script type="text/javascript">
window.onload = function () {
MIDI.loadPlugin({
soundfontUrl: "./soundfont/",
instrument: "acoustic_grand_piano",
onprogress: function(state, progress) {
console.log(state, progress);
},
onsuccess: function() {
var delay = 0; // play one note every quarter second
var note = 50; // the MIDI note
var velocity = 127; // how hard the note hits
// play the note
MIDI.setVolume(0, 127);
MIDI.noteOn(0, note, velocity, delay);
MIDI.noteOff(0, note, delay + 0.75);
}
});
};
</script>
</body>
我想在窗口加载时加载插件。然后我想 让我自己的javascript函数向MIDI.noteOn()和MIDI.noteOff()发送指定的音符值。我很尴尬地问这么简单的问题,但我的尝试无处可去。感谢您的任何建议。
答案 0 :(得分:0)
在JavaScript中,您可以命名函数,然后按名称引用它们。
function playNote() {
MIDI.noteOn(0, 50, 127, 0);
MIDI.noteOff(0, 50, 0.75);
}
MIDI.loadPlugin({
soundfontUrl: './soundfont/',
instrument: 'acoustic_grand_piano',
onsuccess: playNote
});