mp3-duration 0.1.9

A library for measuring the playback duration of mp3 files
Documentation

Crates.io Build Status

mp3-duration

This crate has only one purpose: determining the playback duration of mp3 files.

Example

use std::path::Path;
use mp3_duration;

let path = Path::new("music.mp3");
let duration = mp3_duration::from_path(&path).unwrap();
println!("File duration: {:?}", duration);

Changelog

Version 0.1.9

  • Fixed a bug where the MP3Duration error type was no longer public since version 0.1.8 (thanks @compenguy for the contribution)

Version 0.1.8

  • Minor performance improvements

Version 0.1.7

  • Fixed a crash when reading corrupted files with impossibly short MPEG frames

Links