I am trying to get SteroToMonoProvider to work. So have I have there working.
So when I set the StereoToMono1.LeftVolume to zero and the RightVolume to 1 the sound does not shift to the right side.
Thanks
private WaveFormat _waveFormat = new WaveFormat(44100, 16, 2);
_waveProvider1 = new BufferedWaveProvider(_waveFormat);
_waveProvider1.BufferDuration = new TimeSpan(_bufferHours,
_bufferMinutes,
_bufferSeconds);
_waveProvider1.DiscardOnBufferOverflow = true;
_StereoToMono1 = new StereoToMonoProvider16(_waveProvider1);
_waveOut1.Init(_StereoToMono1);
_waveOut1.play();
_StereoToMono1.LeftVolume = 0;
_StereoToMono1.RightVolume = 1;
I am streaming Audio into the BufferedWaveProvider. The wav files I am streaming at 16bit PCM at 44kHz 2 Channel. So when I set the StereoToMono1.LeftVolume to zero and the RightVolume to 1 the sound does not shift to the right side.
Thanks