opus
opus copied to clipboard
Go wrapper for libopus (golang)
Question: is it possible to build against libopus v1.5.(2) to be able to use the new features #108
https://opus-codec.org/release/stable/2024/03/04/libopus-1_5.html
Hey!! I am trying to use this library to encode the video and I can't find a way to make it work, everytime I try to build the app I...
In order to support deep PLC, libopus added `OPUS_SET_COMPLEXITY()` to the decoder API. This PR adds SetComplexity method to the decoder. Note that if libopus < 1.5 this function will...
### Feature: Add support for Constant Bitrate (CBR) control This PR adds the ability to configure whether the Opus encoder uses constant bitrate (CBR) or variable bitrate (VBR), which was...
Hi, I'm trying to create a simple encoder / decoder test to find out what's going wrong in my build. Below is a simplified version; ```golang // NewOpusCodec creates a...
libopus offers a [Multistream API](https://opus-codec.org/docs/opus_api-1.1.2/group__opus__multistream.html) which allows for more channels to be packaged into an opus stream. How difficult would it be to expose those? And is it within the...