A low-overhead and adaptable audio playback library for Rust.
Play a single sound file:
```rust norun let (mut manager, backend) = awedio::start()?; manager.play(awedio::sounds::openfile("test.wav")?);
```
Play a sound with adjustable volume controllable after playback has started:
```rust norun 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.setpaused(true);
```
Sound
] similar to Iterator
in the standard library.cpal
feature (on by default).Backends are implemented by pulling samples from the [Renderer].
async
: Enable async features that depend on
tokio-synccpal
: Enable the [cpal] backend.wav
: Enable Wav file decoding using Houndmp3
: Enable mp3 file decoding using rmp3By default all features are enabled. Depending libraries should disable default features.
Built for creating activities for 10 Buttons, a screen-less tablet for kids. Purposefully kept generic to be usable in other contexts.
Thanks to the following audio playback libraries which inspired and were a reference for this library:
SoundList::new().pausable().with_adjustable_volume().controllable()
...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.