0

In our solution we need to play sound on one of the recording devices. For this purpose we are using VAC (Virtual Audio Cable), but we have a problem that it creates noise in the output.

Is it possible to play audio to recording device in C#?

Is there some existing library for that or virtual audio driver is required?

Jack Spektor
  • 1,097
  • 1
  • 11
  • 30

2 Answers2

0

There are useful 3rd-party-tools & APIs in a question was asked earlier:C# Audio Library. I hope you find what you want.

Community
  • 1
  • 1
Ramy Yousef
  • 2,982
  • 2
  • 25
  • 24
0

We used NAudio library to play sound on a specific playback device.

By default VAC is duplicating audio from playback device to recording device, so by playing it on virtual device it's also played on recording device.

Jack Spektor
  • 1,097
  • 1
  • 11
  • 30