libopusenc icon indicating copy to clipboard operation
libopusenc copied to clipboard

Library for encoding .opus audio files and live streams.

Results 11 libopusenc issues
Sort by recently updated
recently updated
newest added

## Repro Compile the library using MSVC 2019, see warning: ``` libopusenc\src\unicode_support.c(44,56): warning C4312: 'type cast': conversion from 'int' to 'wchar_t *' of greater size ``` ## Solution The malloc...

I tried many combinations about mono / stereo everything with mono seems not working perfectly Mono input => Mono output Stereo input => Mono output the only perfect case is...

Not very often, but maybe 1 in 50 times, I get a crash with the above-mentioned log. ``` assert(enc->buffer_end unrecoverable) return enc->unrecoverable; /* Draining should have called all the streams...

I have to make this library for four different architectures. I was able to make that library for my computer's architecture by installing opus with brew. However, I now need...

Hi, I was trying to build the documentation (because I did not see it [online](https://opus-codec.org/docs/), as indicated in README.md). I encountered two issues. The first was a warning about `@HAVE_DOT@`...

I tried to get frame duration by calling `ope_encoder_ctl`, but this call ended up with an errorCode=OPE_UNIMPLEMENTED (-15). But as far as I can see this operation was long ago...

I integrated opus enc library(version 0.2.1) to Android platform. but I collected some crash when opus encode destory. error backstrace as following: ``` 1 #00 pc 0006828e /system/lib/libc.so (je_huge_salloc+133) [armeabi-v7a]...

``` CC src/resample.lo src/resample.c: In function ‘resampler_basic_zero’: src/resample.c:567:106: warning: unused parameter ‘in’ [-Wunused-parameter] static int resampler_basic_zero(SpeexResamplerState *st, spx_uint32_t channel_index, const spx_word16_t *in, spx_uint32_t *in_len, spx_word16_t *out, spx_uint32_t *out_len) ~~~~~~~~~~~~~~~~~~~~^~ src/resample.c:...

Hello, I'm using libopusenc with an ARM cortex-m4 device and there are some feature that could be useful: - Avoid resampling with rates supported by opus (8000, 12000, 16000, 24000,...

Where am I taking the wrong step to receive this error? I'm just encoding a simple audio (recorded in 8kHz with 20ms frames and 8 kbps) not sure what went...