I'm dealing with sound software and I'm setting the default Audio device using nircmd.exe perfectly, but I also need to adjust the balance levels, either using a similar tool (since nircmd.exe doesn't handle that) or programatically using C#.
I've seen NAudio has a read-only property that reads the values
defaultDevice.AudioMeterInformation.PeakValues[0]; //i.e. left channel
But there's no setter for that.
Is there any familiar way to achieve this? Any help is appreciated, thanks.