Opus.NET icon indicating copy to clipboard operation
Opus.NET copied to clipboard

Demo not working in Stereo

Open maximation opened this issue 8 years ago • 1 comments

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

maximation avatar Jun 15 '17 02:06 maximation

Same problem.

andernunes avatar Apr 10 '20 04:04 andernunes