How to use a USB speaker and built-in audio speakers simultaneously on Mac OS X 10.6 using Cocoa or anyting else?

I want to use the built-in speakers and USB speakers simultaneously on Mac OS X 10.6.

I want to play different files on these (I do not want to play same file on both speakers).

Is is possible using Cocoa or anything else?

link|improve this question
This should be moved back to StackOverflow, AFAIK this is not that easy because Mac OS X is designed to only use one speaker system at a time. For example sometimes it would be useful to have different audio output on the headphones than on the loudspeakers. Again AFAIK this is impossible with the standard plugs. (Using a USB one should work.) – Georg Schölly Dec 23 '09 at 7:08
feedback

migrated from superuser.com May 17 at 16:13

This question came from our site for computer enthusiasts and power users.

2 Answers

Programmatically it's possible using a library like portaudio - you open two different streams (using Pa_OpenStream) and you get two different callbacks that you use to inject audio data.

I'm sure it's possible using Core Audio too, but that's more complicated.

link|improve this answer
feedback

Rogue Amoeba's Airfoil can redirect the audio stream from a single application to, f/ex, an Airport Express, leaving other audio to go the system speakers. I don't have a USB audio device to test your specific application, but you can try it free.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown