2013-01-25 08:49:12 +01:00
|
|
|
<!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>
|
2013-01-28 21:27:53 +01:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
2013-01-26 06:33:59 +01:00
|
|
|
<!-- midi.js package -->
|
2013-01-25 09:21:16 +01:00
|
|
|
<script src="./js/MIDI/AudioDetect.js" type="text/javascript"></script>
|
|
|
|
<script src="./js/MIDI/LoadPlugin.js" type="text/javascript"></script>
|
2013-01-25 08:49:12 +01:00
|
|
|
<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>
|
2013-01-26 06:33:59 +01:00
|
|
|
<!-- extras -->
|
|
|
|
<script src="./inc/WebMIDIAPI.js" type="text/javascript"></script>
|
|
|
|
<script src="./inc/Base64.js" type="text/javascript"></script>
|
2013-01-25 08:49:12 +01:00
|
|
|
<script src="./inc/base64binary.js" type="text/javascript"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
// This iterates through all the notes in these two soundfonts.
|
|
|
|
// The synth_drum does not have as high or low of range of notes,
|
|
|
|
// so you wont hear it for a few seconds.
|
|
|
|
|
|
|
|
window.onload = function () {
|
|
|
|
MIDI.loadPlugin({
|
|
|
|
soundfontUrl: "./soundfont/",
|
|
|
|
instruments: [ "acoustic_grand_piano", "synth_drum" ],
|
|
|
|
callback: function() {
|
|
|
|
MIDI.programChange(0, 0);
|
|
|
|
MIDI.programChange(1, 118);
|
|
|
|
for (var n = 0; n < 100; n ++) {
|
|
|
|
var delay = n / 4; // play one note every quarter second
|
|
|
|
var note = MIDI.pianoKeyOffset + n; // the MIDI note
|
|
|
|
var velocity = 127; // how hard the note hits
|
|
|
|
// play the note
|
|
|
|
MIDI.noteOn(0, note, velocity, delay);
|
|
|
|
// play the some note 3-steps up
|
|
|
|
MIDI.noteOn(1, note + 3, velocity, delay);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|