0

I am trying to send audio data to the right and left output channels of a soundcard's output port separately. The right and left channels should get data from two different audio sources.. Is it possible with NAudio?

Cœur
  • 37,241
  • 25
  • 195
  • 267
ress
  • 1

2 Answers2

0

WaveChannel32 has pan as parameter. Specify 1 or -1.

Peter Fren
  • 93
  • 3
  • 9
0

Yes, read my article on handling multi-channel audio in NAudio. The MultiplexingSampleProvider enables you to route different inputs to different soundcard outputs.

Mark Heath
  • 48,273
  • 29
  • 137
  • 194