I'd know how can I mute or select only one audio channel in C#. I have to play an audio file only in the left/right channel. Is it possible? What do I have to do?
How to mute or select only one audio channel?
1k views Asked by Marco Zanaboni At
2
There are 2 answers
0
On
System.Media.SoundPlayer lacks the possability of adjusting the balance. You should try something different. System.Media.SoundPlayer simply controls playback of a sound from a .wav file
You will likely need to use the Balance property of System.Windows.Media.MediaPlayer.
MSDN MediaPlayer Balance Property
Set it to -1 for the left and 1 for the right channel.