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
This happened when I was trying to automatically put together a MIDI from some other file format; this code snippet triggers the crash
var track=new MidiWriter.Track();
var track1=new MidiWriter.Track();
track1.addEvent(new MidiWriter.NoteEvent({pitch:["A3"],duration:'T96',wait:'T256'}));
track.mergeTrack(track1);
var track2=new MidiWriter.Track();
track2.addEvent(new MidiWriter.NoteEvent({pitch:["B3"],duration:'T96',wait:'T128'}));
track.mergeTrack(track2);
I also get the crash with this merge
var track1=new MidiWriter.Track();
track1.addEvent(new MidiWriter.NoteEvent({pitch:["A3"],duration:'4',wait:'T256'}));
var track2=new MidiWriter.Track();
track2.addEvent(new MidiWriter.NoteEvent({pitch:["B3"],duration:'4',wait:'T128'}));
track1.mergeTrack(track2);
The text was updated successfully, but these errors were encountered:
xp2-882030kgz010602
changed the title
Mysterious crash; I don't know what's going on
Mysterious crash when merging tracks; I don't know what's going on
Dec 3, 2023
This happened when I was trying to automatically put together a MIDI from some other file format; this code snippet triggers the crash
I also get the crash with this merge
The text was updated successfully, but these errors were encountered: