Adjust .midi volume
I'm playing myMidiFile.midi and the volume is always really high, does anyone know how to adjust the volume of my file
thanks in advance
I'm playing myMidiFile.midi and the volume is always really high, does anyone know how to adjust the volume of my file
thanks in advance
I am having the same trouble, This code is should work, but no luck for me. I think it may be different on Java 5?
MidiChannel[] channels = synthesizer.getChannels();
for (int i=0; i<channels.length; i++) {
channels.controlChange(7, ><value between 0 and 127 for volume>);
}