This crate has only one purpose: determining the playback duration of mp3 files.
```rust use std::path::Path; use mp3_duration;
let path = Path::new("music.mp3"); let duration = mp3duration::frompath(&path).unwrap(); println!("File duration: {:?}", duration); ```