ffdb8fc93a
Web MIDI API support works with jazz-soft.net plugin installed, this means users will not need to download Soundfonts from your website, rather they will use their built-in sound banks. This shim by @cwilso provides a preview of the upcoming Web MIDI API, an exciting addition to the W3 specs!
36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns = "http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<!-- midi.js package -->
|
|
<script src="./js/MIDI/AudioDetect.js" type="text/javascript"></script>
|
|
<script src="./js/MIDI/LoadPlugin.js" type="text/javascript"></script>
|
|
<script src="./js/MIDI/Plugin.js" type="text/javascript"></script>
|
|
<script src="./js/MIDI/Player.js" type="text/javascript"></script>
|
|
<script src="./js/Window/DOMLoader.XMLHttp.js" type="text/javascript"></script>
|
|
<script src="./js/Window/DOMLoader.script.js" type="text/javascript"></script>
|
|
<!-- extras -->
|
|
<script src="./inc/WebMIDIAPI.js" type="text/javascript"></script>
|
|
<script src="./inc/Base64.js" type="text/javascript"></script>
|
|
<script src="./inc/base64binary.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
|
|
window.onload = function () {
|
|
MIDI.loadPlugin({
|
|
soundfontUrl: "./soundfont/",
|
|
instrument: "acoustic_grand_piano",
|
|
callback: 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.noteOn(0, note, velocity, delay);
|
|
MIDI.noteOff(0, note, delay+0.01);
|
|
}
|
|
});
|
|
};
|
|
|
|
</script>
|
|
</body>
|
|
</html> |