ez-audio is a easy to use audio playback library that uses the C library miniaudio as a backend.
Only usable on nightly currently.
```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 {}
```