Opus.NET
Opus.NET copied to clipboard
Demo not working in Stereo
I changed the demo code from this
_encoder = OpusEncoder.Create(48000, 1, FragLabs.Audio.Codecs.Opus.Application.Voip);
_encoder.Bitrate = 8192;
_decoder = OpusDecoder.Create(48000, 1);
to this
_encoder = OpusEncoder.Create(48000, 2, FragLabs.Audio.Codecs.Opus.Application.Audio);
_encoder.Bitrate = 8192;
_decoder = OpusDecoder.Create(48000, 2);
The result was choppy audio I have experimented with bitrates and other options with the same resut
My audio input is confirmed as stereo .. mono works perfectly
Same problem.