#opus #codec #api-bindings

sys audiopus_sys

FFI-Binding to Opus, dynamically or statically linked for Windows and UNIX

12 releases

0.2.2 Apr 22, 2021
0.2.1 Apr 22, 2021
0.1.8 Nov 12, 2020
0.1.7 Jan 16, 2020
0.1.1 Mar 29, 2019

#933 in Audio

Download history 1977/week @ 2023-12-13 1529/week @ 2023-12-20 1302/week @ 2023-12-27 2184/week @ 2024-01-03 2010/week @ 2024-01-10 2145/week @ 2024-01-17 2501/week @ 2024-01-24 2290/week @ 2024-01-31 2411/week @ 2024-02-07 2151/week @ 2024-02-14 1965/week @ 2024-02-21 1931/week @ 2024-02-28 1923/week @ 2024-03-06 2421/week @ 2024-03-13 2398/week @ 2024-03-20 1549/week @ 2024-03-27

8,571 downloads per month
Used in 20 crates (4 directly)

ISC license

2.5MB
46K SLoC

C 41K SLoC // 0.2% comments Rust 1.5K SLoC Visual Studio Project 1K SLoC GNU Style Assembly 538 SLoC Python 352 SLoC // 0.1% comments Automake 313 SLoC // 0.1% comments Perl 264 SLoC // 0.2% comments M4 199 SLoC // 0.3% comments Shell 183 SLoC // 0.4% comments Visual Studio Solution 168 SLoC Batch 20 SLoC

Contains (obscure autoconf code, 35KB) opus/configure.ac

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

About

audiopus_sys is an FFI-Rust-binding to Opus version 1.3.

Orginally, this sys-crate was made to empower the serenity-crate to build audio features on Windows, Linux, and Mac. However, it's not limited to that.

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

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.

Generating The Binding

If you want to generate the binding yourself, you can use the generate_binding-feature.

Be aware, bindgen requires Clang and its LIBCLANG_PATH environment variable to be specified.

Installation

Add this to your Cargo.toml:

[dependencies]
audiopus_sys = "0.2"

No runtime deps