A barebones, opinionated Rust crate for decoding audio files into raw 32-bit float samples.
|Format |Feature |Backend |Status|
|-------|---------|--------------------------------------------|:----:|
|WAV |wav
|hound |✅
|Vorbis |vorbis
|lewton |✅
|MP3 |mp3
|minimp3 |✅
|FLAC |flac
|claxon |✅
(✅ = Implemented; 🛠 = WIP)
Creak compiles with support for all formats by default, but this may not be desirable to everyone. To enable support for only specific formats, you'll need to manually specify the features in your Cargo.toml
like this:
```toml [dependencies]
creak = { version = "*", default-features = false, features = ["wav", "vorbis"] } ```
```rust // Simple program that reads an audio file and dumps its samples in 32-bit float to stdout
use std::{env, io}; use std::io::Write; use creak;
fn main() -> Result<(), Box
// Get a file name from the cmdline args
let file_name = match args.first() {
Some(arg) => arg,
None => {
eprintln!("no audio file specified!");
return Ok(())
}
};
// Open an audio file of any supported format with one function call
let decoder = creak::Decoder::open(&file_name)?;
// Print basic audio info
eprintln!("Channels: {}, {}Hz", decoder.channels(), decoder.sample_rate());
let mut stdout = io::stdout();
let mut num_samples: usize = 0;
// Dump all samples to stdout
for sample in decoder.into_samples()? {
stdout.write(&sample?.to_le_bytes())?;
num_samples += 1;
}
eprintln!("Samples read: {}", num_samples);
Ok(())
} ```
Creak only outputs f32
samples (because they're good). If you don't want f32
samples, I'm afraid this isn't the crate for you!
Creak cannot handle certain types of audio data, namely:
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.