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
// initialize opus encoder encoder = opus_encoder_create(opusRate, pcmChannels, application.rawValue, &status)
happening when I encode an m4a file. the exception is thrown in OGGEncoder.swift
OGGEncoder.swift
The text was updated successfully, but these errors were encountered:
this is a bit bizarre:
Sorry, something went wrong.
My sample rate was too high. Recording files at 16000 fixed the issue.
16000
I am not sure it was an issue of the sampling rate being too high, but rather the value you gave it initially, 44100, is not supported by Opus.
44100
See the following opus FAQ article: Opus does not directly support a 44.1kHz sampling rate.
No branches or pull requests
happening when I encode an m4a file. the exception is thrown in
OGGEncoder.swift
The text was updated successfully, but these errors were encountered: