#opus #codec #api-bindings #encoding

audiopus

High-level binding of the Opus Codec library

6 releases

0.3.0-rc.0 Apr 22, 2021
0.2.0 Oct 11, 2019
0.1.3 Oct 11, 2019
0.1.2 May 23, 2019
0.1.1 Mar 29, 2019

#144 in Audio

Download history 981/week @ 2023-12-18 722/week @ 2023-12-25 985/week @ 2024-01-01 938/week @ 2024-01-08 1104/week @ 2024-01-15 994/week @ 2024-01-22 891/week @ 2024-01-29 999/week @ 2024-02-05 1107/week @ 2024-02-12 1029/week @ 2024-02-19 1340/week @ 2024-02-26 1113/week @ 2024-03-04 1203/week @ 2024-03-11 1182/week @ 2024-03-18 1262/week @ 2024-03-25 1450/week @ 2024-04-01

5,246 downloads per month
Used in 11 crates (10 directly)

ISC license

72KB
1.5K SLoC

ci-badge docs-badge rust version badge crates.io version

About

audiopus is a high-level binding of Opus version 1.3. The crate uses audiopus_sys underneath.

Orginally, this crate was made to empower the serenity-crate to build audio features on Windows, Linux, and Mac.

Everyone is welcome to contribute, check out the CONTRIBUTING.md for further guidance.

Building

Requirements

If you want to build Opus, you will need cmake.

If you have pkg-config, it will attempt to use that before building.

You can also link a pre-installed Opus, see Pre-installed Opus below.

This crate provides a pre-built binding. In case you want to generate the binding yourself, you will need Clang, see Pre-installed Opus below for further instructions.

Linking

The crate underneath, audiopus_sys, links to Opus 1.3 and supports Windows, Linux, and MacOS By default, we statically link to Windows, MacOS, and if you use the musl-environment. We will link dynamically for Linux except when using mentioned musl.

This can be altered by compiling with the static or dynamic feature having effects respective to their names. If both features are enabled, we will pick your system's default.

Environment variables named LIBOPUS_STATIC or OPUS_STATIC will take precedence over features thus overriding the behaviour. The value of these environment variables have no influence of the result: If one of them is set, statically linking will be picked.

Pkg-Config

By default, audiopus_sys will use pkg-config on Unix or GNU. Setting the environment variable LIBOPUS_NO_PKG or OPUS_NO_PKG will bypass probing for Opus via pkg-config.

Pre-installed Opus

If you have Opus pre-installed, you can set LIBOPUS_LIB_DIR or OPUS_LIB_DIR to the directory containing Opus.

Be aware that using an Opus other than version 1.3 may not work.

Installation

Add this to your Cargo.toml:

[dependencies]
audiopus = "0.3"

Dependencies

~3MB
~50K SLoC