Hi rrrufusss.
I want to control several mono outputs in processing.
For now, i'm only trying to control the Mackbook pro left and right channels separately.
Following your lead, i've found this example in minim manual
code.compartmental.net/minim/examples/Minim/setOutputMixer/ .
I've tried the example in MacOSX and i only see the following mixers:
- JavaSound Audio Engine;
- Built-in microphone;
- Built-in Input.
Running in windows (on top of parallels) i'm able to see the following mixers:
- Primary sound driver;
- Intel(r) Integrated Audio;
- Primary Sound Capture Driver;
- Intel(r) Integrated Audio;
- JavaSound Audio Engine;
- Port Intel(r) Integrated Audio.
I also tried to change
Code:out = minim.getLineOut(Minim.STEREO)
to
Code:out = minim.getLineOut(Minim.MONO)
but i'm not able to make the sound play on left or right speaker separately.
What am i doing wrong? any suggestions?
thanks.