Tedio   ![Docs Passing] ![Latest Version]

A low-overhead and adaptable audio playback library for Rust.

Examples

Play a single sound file:

```rust

fn no_run() -> Result<(), Box> {

let (mut manager, backend) = awedio::start()?; manager.play(awedio::sounds::open_file("test.wav")?);

Ok(())

}

```

Play a sound with adjustable volume controllable after playback has started:

```rust use awedio::Sound; let (mut manager, backend) = awedio::start()?; let (sound, mut controller) = awedio::sounds::SineWav::new(400.0) .withadjustablevolumeof(0.25) .pausable() .controllable(); manager.play(Box::new(sound)); std::thread::sleep(std::time::Duration::frommillis(100)); controller.setvolume(0.5); std::thread::sleep(std::time::Duration::frommillis(100)); controller.set_paused(true);

Ok::<(), Box>(())

```

Design Goals

API Overview

Current backends

Backends are implemented by pulling samples from the [Renderer][crate::manager::Renderer].

Cargo Features

By default all features are enabled. Depending libraries should disable default features.

Motivation

Built for creating activities for 10 Buttons, a a screen-less tablet for kids. Purposefully kept generic to be usable in other contexts.

Alternatives and Inspiration

Thanks to the following audio playback libraries which inspired and were a reference for this library:

License

This project is licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.