Tagged Questions
3
votes
1answer
50 views
java sequencer playlist
I currently have a very simple class:
public class Music {
private Sequence sequence;
private Sequencer sequencer;
public Music(String music) {
try {
this.sequence = ...
1
vote
1answer
301 views
Java getting input from MIDI keyboard
I have designed my own synthesizer in java and I now want to connect it with a midi keyboard. My class below searches through all the midi devices that have transmitters. It successfully finds my midi ...
1
vote
1answer
271 views
How to play a .MIDI file in a new thread in Java?
I am remaking part of a game in Java, and I need to know how to play the MIDI sound files. Preferably it would not involve importing any external libraries. It must also be runnable in a new thread, ...
0
votes
1answer
9 views
java midi latency
I´m trying to make a java application that is able to play notes on the computer after detecting a midi device.
Once I get the desired midi device I´m seting the receiver to which the device´s ...
0
votes
2answers
2k views
Convert Midi Note Numbers To Name and Octave
Does anybody know of anything that exists in the Java world to map midi note numbers to specific note names and octave numbers. For example, see the reference table:
...