私はこの MIDI.js ライブラリを使用しています: https://github.com/mudcube/MIDI.js
プラグインをロードして midi ファイルを再生するには、次のようにします。
window.onload = function () {
MIDI.loadPlugin({
soundfontUrl: "./soundfont/",
instruments: [ "acoustic_grand_piano" ],
callback: function() {
MIDI.programChange(0, 0);
_player = MIDI.Player;
}
});
};
function playSong(){
_player.timeWarp = 1; // speed the song is played back
_player.loadFile(song[songid], _player.start);
_player.addListener(function(data) {
var now = data.now; // where we are now
var end = data.end; // time when song ends
var channel = data.channel; // channel note is playing on
var message = data.message; // 128 is noteOff, 144 is noteOn
var note = data.note; // the note
var velocity = data.velocity; // the velocity of the note
});
}
var songid = 0;
var song = ['data:audio/mid;base64,TVRoZAAAAA...
私の質問は、再生する前にこの midi ファイルを移調する方法はありますか? 基本的に、midi ファイル (.mid ファイルまたは base64 形式) を解析し、すべてのノートを +1 で変更してから、プレーヤーに送信したいと考えています。JavaScriptでこれを行う方法はありますか?