That'd be awesome.

I think it's possible. You have to convert your audio to PCM WAV, and then you have to split up the data. I'm not sure but i think you do it like this:
When you have a 16 bit stereo WAV buffer, you read the first 16 bits and put those in a 16 bit mono buffer. the next 16 bits should be moved to the second mono buffer, the next 2bytes to the first buffer and so on... keep alternating between the two buffers.

I think that'll do the trick. If it works I would love to have the code. :razz: Are you planning to put it on your site?

I googled for it and i think this page confirms my assumption.

Good luck!