creak 0.3.0

Lightweight audio decoder. Converts popular formats to raw 32-bit float samples.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Creak
//!
//! Creak is a simple library for decoding popular audio formats into raw `f32` samples.
//!
//! ## Usage
//! 
//! The `Decoder` struct handles opening, parsing, and decoding audio files. Use `Decoder::open()` to open a file.
//! When you want to read samples, call `Decoder.into_samples()` to get an iterator over the samples.
//!
//! The audio file is closed when the `Decoder` or `SampleIterator` is dropped.
//! 
//! Currently supported formats are WAV, Ogg Vorbis, MP3, and FLAC.

#![allow(dead_code)]

mod decoder;

pub use decoder::*;