2 releases

1.0.0-alpha2 Feb 3, 2022
1.0.0-alpha Jan 31, 2022

#848 in Audio

22 downloads per month

CC0 license

30KB
228 lines

Build Status (Travis-CI) Crates.io Documentation

rmp3

Idiomatic no_std bindings to minimp3 which don't allocate.

Documentation

The documentation is hosted online over at docs.rs.

Usage

Add this to your Cargo.toml:

[dependencies]
rmp3 = "0.3"

... or, if you need std specific features:

[dependencies]
rmp3 = { features = ["std"], version = "0.3" }

The most basic example is using the provided streaming iterator to decode a file, like so:

use rmp3::{Decoder, Frame};

let mp3 = std::fs::read("test.mp3")?;
let mut decoder = Decoder::new(&mp3);
while let Some(frame) = decoder.next() {
    if let Frame::Audio(audio) = frame {
        // process audio frame here!
        imaginary_player.append(
            audio.channels(),
            audio.sample_count(),
            audio.sample_rate(),
            audio.samples(),
        );
    }
}

Check out the documentation for more examples and info.

Features

  • mp1-mp2: Includes MP1 and MP2 decoding code.
  • simd (default): Enables handwritten SIMD optimizations on eligible targets.
  • std: Adds things that require std,

Dependencies

~175KB