Robin Robinson
Robin Robinson

Reputation: 1605

Multiple audio outputs in .Net

I am looking to build a PC box that can play up to 16 audio files(mp3/wav) out to 16 analog devices(think of it as 16 sets of speakers). There will be a one to one relationship for audio file to analog output. The solution that is being presented to be hardware wise is to use multiple sound cards, so my question is, is there a library available that will let me play an audio file to a specific sound card / channel?

Upvotes: 7

Views: 4493

Answers (3)

Magnus Johansson
Magnus Johansson

Reputation: 28325

Yes, the BASS library can do this. http://www.un4seen.com

C# wrappers are also available, a commercial one:
Bass.NET
and an excellent alternative open source C# wrapper for Bass:
ManagedBass by Mathew Sachin

Upvotes: 6

Robin Robinson
Robin Robinson

Reputation: 1605

I found this one while I was looking as well. http://www.alvas.net/alvas.audio.aspx

Upvotes: 2

DNS
DNS

Reputation: 38219

FMOD should do what you're looking for. It's also an extremely fast, solid and popular library overall.

Upvotes: 1

Related Questions