#sound #effect #rusty #sfx #2d-game #format

rusty_audio

Convenient sound library for small projects and educational purposes

12 stable releases

1.4.1 Apr 10, 2023
1.4.0 Jun 13, 2022
1.2.1 Mar 15, 2021
1.1.5 Feb 27, 2021
1.1.0 Oct 10, 2019

#160 in Audio

Download history 448/week @ 2023-12-12 428/week @ 2023-12-19 288/week @ 2023-12-26 201/week @ 2024-01-02 470/week @ 2024-01-09 488/week @ 2024-01-16 289/week @ 2024-01-23 238/week @ 2024-01-30 376/week @ 2024-02-06 515/week @ 2024-02-13 411/week @ 2024-02-20 577/week @ 2024-02-27 525/week @ 2024-03-05 478/week @ 2024-03-12 659/week @ 2024-03-19 513/week @ 2024-03-26

2,275 downloads per month
Used in 3 crates

MIT/Apache

43KB
92 lines

Crates.io Version Crates.io Downloads Build Status

Rusty Audio Playback Library

rusty_audio is a fun and easy audio playback library that provides a 4-track audio system to load/decode audio files and play them, perfect for small projects. It is also well-suited for training purposes, and is featured in the Ultimate Rust Crash Course on Udemy.

  • Formats: MP3, WAV, Vorbis and Flac.
  • Platforms: Supports macOS, Windows, and iOS out of the box. Linux requires installation of extra dependencies.

This library uses the rodio audio playback library under the hood, which you should consider using directly if your needs are more complex.

Example

# Add this to your [dependencies] section in Cargo.toml
rusty_audio = "1.4.1"
// main.rs
use rusty_audio::Audio;

fn main() {
    let mut audio = Audio::new();
    audio.add("startup", "my_sound_file.mp3"); // Load the sound, give it a name
    audio.play("startup"); // Execution continues while playback occurs in another thread.
    audio.wait(); // Block until sounds finish playing
}

Built-in Example

You can run the built-in example by cloning this repository, and then running:

$ cargo run --example play

Dependencies on Linux

For Linux, the CPAL package that is used under the hood requires the alsa development libraries to be installed.

CentOS

sudo yum install -y alsa-lib-devel

Debian/Ubuntu

sudo apt install libasound2-dev

Contribution

All contributions are assumed to be dual-licensed under MIT/Apache-2.

License

Distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See license/APACHE and license/MIT.

Sponsor

If you like Rusty Audio, please consider sponsoring me on GitHub. 💖

Dependencies

~0.7–34MB
~472K SLoC