I am trying to implement a Midi player with << and >> buttons.
Is there a way you can rewind the process and make it go faster to seek a possition in the midi file?
// Register for the events you're interested in:EventPrinter ep = new EventPrinter("Individual Listener");processor.registerEventListener(ep, NoteOn.class);
Hello,
I am trying to implement a Midi player with << and >> buttons.
Is there a way you can rewind the process and make it go faster to seek a possition in the midi file?
// Register for the events you're interested in:
EventPrinter ep = new EventPrinter("Individual Listener");
processor.registerEventListener(ep, NoteOn.class);
// Start the processor:
processor.start();
Thanks in advance!