ez-audio is a easy to use audio playback library that uses the C library miniaudio as a backend.
Currently only compiles on nightly and a C++ compiler is required as it depends on the cc crate.
```rust let context = Context::new().unwrap(); let mut clip = AudioLoader::new("audio.mp3", context.clone()) .load() .unwrap();
clip.play();
// loop forever to stop handle from being dropped
loop {}
```