21 releases

Uses old Rust 2015

0.12.0 Jan 16, 2024
0.10.7 Dec 12, 2023
0.10.3 Oct 6, 2022
0.10.1 Jul 20, 2022
0.5.1 Mar 28, 2018

#180 in Audio

Download history 103/week @ 2023-11-24 156/week @ 2023-12-01 141/week @ 2023-12-08 57/week @ 2023-12-15 31/week @ 2023-12-22 50/week @ 2023-12-29 97/week @ 2024-01-05 241/week @ 2024-01-12 142/week @ 2024-01-19 144/week @ 2024-01-26 115/week @ 2024-02-02 131/week @ 2024-02-09 153/week @ 2024-02-16 234/week @ 2024-02-23 138/week @ 2024-03-01 84/week @ 2024-03-08

626 downloads per month

ISC license

85KB
2K SLoC

cubeb-rs ISC License

A cross-platform audio library in Rust.

Features

Provides access to the following:

  • Multiple audio backends across multiple platforms. See here for details.
  • Enumeration of available audio devices.
  • Opening input, output and duplex audio streams with control over latency, sample rate, channel layout, state transitions, data handling and more.

Goals

Currently, cubeb-rs is based on a set of bindings to the original cubeb C++ library most notable for its use as the audio backend within Gecko, Mozilla's browser engine. The long-term goal for cubeb-rs is to become independent of the C++ library and provide a pure-Rust implementation down to the level of the platform API eventually replacing the original within Gecko where possible.

In order to achieve this goal cubeb-rs is structured in a manner that supports backend implementations in both pure-Rust and via bindings to the C++ implementation, allowing for progressive replacement. So far, pure-Rust implementations exist for:

The plan is to consolidate all cubeb-related projects (including backend implementations) under a single repository here in the near future.

While cubeb is primarily renown for its use within Gecko, contributions and use from projects outside of Gecko is very welcome.

Crates

The following crates are included within this repository:

Crate Links Description
cubeb crates.io docs.rs The top-level user API for cubeb-rs. See the cubeb-api subdirectory. Depends on cubeb-core.
cubeb-core crates.io docs.rs Common types and definitions for cubeb rust and C bindings. Not intended for direct use. Depends on cubeb-sys.
cubeb-sys crates.io docs.rs Native bindings to the cubeb C++ library. Requires pkg-config and cmake
cubeb-backend crates.io docs.rs Bindings to libcubeb internals to facilitate implementing cubeb backends in Rust. Depends on cubeb-core.

Dependencies

~1MB
~30K SLoC