Reputation: 4209
Im researching into this for a possible future project. The customer wants to make a small solution where they need playback of multiple (different) audio files on different channels. The setup is a computer with a sound card which has 6 different output channels, and I need to develop a small application where they can determine which audio file (eg. mp3) need to be played back on which channel.
My research seem to point to external 3rd party libraries. I would like to manage all this myself.
Any ideas on how to accomplish this are most welcome - so are alternative solutions
Cheers,
Upvotes: 2
Views: 1585
Reputation: 8953
There is this open source library for audio decoding and playback:
To manage multiple channels, windows will generally see them as different output devices, so you can use standard api for this type of playback.
I would recommend using ASIO drivers tho if possible, it will give you a much better control over channels.
Upvotes: 1