java - Reading MIDI Files -
What is the best way to read a MIDI file (chronological) with multiple tracks? (Java)
Note: I do not want to play MIDI file, just read the message.
Couple thoughts:
Is it safe to believe there are no notes events less than 1/64 notes? Or should I go on every track and go on the next tick after all other tickix tracks
- Assume that there is no small event smaller than the 1 / 64th note, and the current situation Tick count
- >
one MIDI You can read the file and arrange messages in chronological order.
The result can be read as JFugue MusicStrings (for example, C-Fast, 5th October, Full Note = "C # 5W"), or you can write your own Parser Listener And you can attach it to the MidParser. You can output your own text.
Comments
Post a Comment