I need to record simultaneously from two sources, one connect to the left channel of my mic, the other connect to right. Possible to do that with NAudio ?
Asked
Active
Viewed 1,717 times
1 Answers
0
Yes, but you will be recording from both channels at once, so the samples will arrive interleaved. Assuming you are recording in 16 bit audio, you would take two pairs of two bytes from the recorded buffer, and write one pair to one WAV file, and one to another.
See my answer here showing how you do this for an existing multi-channel WAV file.

Community
- 1
- 1

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