android-opus-codec
android-opus-codec copied to clipboard
Implementation of Opus encoder and decoder in C++ for android using JNI
License
I found nothing about the LICENSE.
I have two decoders running in my application (both mono) and they work great individually, but as soon as I try to use them at the same time the output...
Thank you for this library. We have a situation where 2G is used with VoIP and it tends to have very long latency and large packet loss and jitter. Apparently,...
Please provide java usage examples What I've tried Opus codec = new Opus(); Constants.SampleRate SAMPLE_RATE = new Constants.SampleRate(8000); > 'SampleRate(int)' has private access in 'com.theeasiestway.opus.Constants.SampleRate'
can you help me to write the encoded array to storage and read and decode the array.?
Currently, controlling cbr/vbr mode is not supported. https://opus-codec.org/docs/opus_api-1.3.1/group__opus__encoderctls.html#ga34d09ae06cab7e1a6c49876249b67892
i've written this code but the output file fails to play ``` Constants.SampleRate SAMPLE_RATE = Constants.SampleRate.Companion._48000(); Constants.Channels CHANNELS = Constants.Channels.Companion.mono(); Constants.Application APPLICATION = Constants.Application.Companion.voip(); Constants.FrameSize FRAME_SIZE = Constants.FrameSize.Companion._320(); try {...
Any plan to Update to Opus 1.4?
Does not support Android 5.1?
Foir those that waant to store the samples in a file. Untested because the included so file doesnt export anything. strange. nm shows no exports on libopusenc.so. i will start...