We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSound,  Music Libraries › proMidi out osx (IAC not appearing)
Page Index Toggle Pages: 1
proMidi out osx (IAC not appearing) (Read 364 times)
proMidi out osx (IAC not appearing)
Nov 26th, 2008, 7:18pm
 
I've enabled IAC, but proMidi won't find it. I get this output when I run my test app:

<< inputs: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
<< outputs: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
output 0 : Java Sound Synthesizer
<<>>>>>>>>> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Code:

import promidi.*;

MidiIO midiIO;
MidiOut midiOut;

void setup(){
size(128*5,128*5);
background(0);
smooth();

//get an instance of MidiIO
midiIO = MidiIO.getInstance(this);

//print a list with all available devices
midiIO.printDevices();
//open an midiout using the first device and the first channel
midiOut = midiIO.getMidiOut(0, 0);
}
void draw(){
}
void mousePressed(){
Note note = new Note(int(mouseX/5f),int(mouseY/10f)+60,int(random(1000)));
midiOut.sendNote(note);
print(note);
}


Anyone got any ideas?
Re: proMidi out osx (IAC not appearing)
Reply #1 - Nov 27th, 2008, 3:16pm
 
i´ve got exactly the same problem.
i´ve tested the controller connection with modul8 where it works.
Re: proMidi out osx (IAC not appearing)
Reply #2 - Nov 29th, 2008, 5:28pm
 
fix for this:

http://www.humatic.de/htools/mmj.htm

download, unzip, and put libmmj.jnilib and mmj.jar into the Library/Java/Extensions folder.

Worked for me Smiley
Page Index Toggle Pages: 1