We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Same problem.
Sorry, something went wrong.
No branches or pull requests
I changed the demo code from this
to this
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
The text was updated successfully, but these errors were encountered: