Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been using Fmod (c/c++) for a few days and I was wondering if there was a way to split a single stereo stream (left/right) into two mono streams and thus have them in two channels instead of one channel (in order to have two separate volumes and pans) ? Thanks !

share|improve this question

1 Answer

One way I know is if you create two channel on one sound and then use channel.setInputChannelMix({0, 1}, 1) for controlling audio to channel

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.