#miniaudio #sound #pcm

sys ep-miniaudio-sys

Raw bindings to the miniaudio C library

11 stable releases

2.4.0 Jul 23, 2020
2.3.1 Jul 21, 2020
1.2.0 Jun 29, 2020
1.1.3 Apr 20, 2020
0.1.0 Apr 4, 2020

#29 in #pcm

Download history 2/week @ 2024-11-20 17/week @ 2024-11-27 93/week @ 2024-12-04 70/week @ 2024-12-11 26/week @ 2024-12-18 9/week @ 2024-12-25 34/week @ 2025-01-01 37/week @ 2025-01-08 10/week @ 2025-01-15 58/week @ 2025-01-29 47/week @ 2025-02-05 7/week @ 2025-02-12 20/week @ 2025-02-19 8/week @ 2025-02-26

97 downloads per month
Used in 3 crates (via miniaudio)

MIT license

2.5MB
52K SLoC

C 52K SLoC // 0.1% comments Rust 344 SLoC // 0.1% comments

Mini Audio Rust Bindings

Build Status crates.io docs.rs

Bindings to https://github.com/dr-soft/miniaudio

** The crate currently lacks documentation, but for the most part the API is very close the the API of the miniaudio C library. That can be found in the C library's main header file. **

Building

LLVM and clang must be installed in order to generate the bindings. Installation instructions can be found here: https://rust-lang.github.io/rust-bindgen/requirements.html

Example Usage

For more examples, check out the examples directory.

//! Enumerating Devices

use miniaudio::Context;

pub fn main() {
    let context = Context::new(&[], None).expect("failed to create context");

    context
        .with_devices(|playback_devices, capture_devices| {
            println!("Playback Devices:");
            for (idx, device) in playback_devices.iter().enumerate() {
                println!("\t{}: {}", idx, device.name());
            }

            println!("Capture Devices:");
            for (idx, device) in capture_devices.iter().enumerate() {
                println!("\t{}: {}", idx, device.name());
            }
        })
        .expect("failed to get devices");
}

Dependencies

~0–2.3MB
~46K SLoC