#mp3 #duration #audio-metadata #metadata #parser

mp3-duration

A library for measuring the playback duration of mp3 files

11 releases

0.1.10 Jun 18, 2020
0.1.9 Feb 14, 2020
0.1.8 Jan 20, 2020
0.1.7 Dec 17, 2019
0.1.1 Dec 11, 2017

#324 in Audio

Download history 175/week @ 2023-12-18 120/week @ 2023-12-25 151/week @ 2024-01-01 222/week @ 2024-01-08 228/week @ 2024-01-15 260/week @ 2024-01-22 344/week @ 2024-01-29 434/week @ 2024-02-05 241/week @ 2024-02-12 250/week @ 2024-02-19 332/week @ 2024-02-26 445/week @ 2024-03-04 535/week @ 2024-03-11 479/week @ 2024-03-18 329/week @ 2024-03-25 534/week @ 2024-04-01

1,912 downloads per month
Used in 5 crates

MIT license

21KB
480 lines

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.10

  • Replaced usage of failure with thiserror for error management (thanks @amesgen for the contribution)

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

Dependencies

~310–760KB
~18K SLoC