You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var track1=new MidiWriter.Track();
track1.addEvent(new MidiWriter.NoteEvent({pitch:["A3"],duration:'4'}));
var track2=new MidiWriter.Track();
//Uncommenting the below line causes the tracks to be merged incorrectly
//track2.addTrackName("name");
track2.addEvent(new MidiWriter.NoteEvent({pitch:["A3"],duration:'4',wait:'T256'}));
track1.mergeTrack(track2);
The text was updated successfully, but these errors were encountered:
I don't know what's going on here.
The text was updated successfully, but these errors were encountered: