A lightweight implementation of decoders for popular used audio formats [Flac, Wav, Mp3, Ogg, etc.] in pure Rust.
Planned features are:
- Decode and maybe Encode support for the most popular audio codecs
- Providing a WASM API for web
- Try supporting no_std
environment
| Format | Flag | Read | Write |
|----------|--------------|-------------|-------------|
| AAC | aac
| - | - |
| Flac | flac
| Done | - |
| MP3 | mp3
| InProgress | - |
| PCM | pcm
| - | - |
| WAV | wav
| Done | InProgress |
| Vorbis | vorbis
| - | - |
Add this to Cargo.toml
file:
toml
[dependencies]
cauldron = "0.0.2"
Example code:
```rust use cauldron::audio::AudioSegment; use cauldron::codecs::FormatFlag;
let mut audio_segment = match AudioSegment::read("
// display some audio info println!("{}", audio_segment);
let samples: Vec
An example to play an audio can be found in examples/play.rs
. To play any audio just run:
shell
cargo run --example play <path-to-audio-file>
Right now project is still in very early stages, so I am not looking for any contributions, but if you see any bug or improvement in existing implementation feel free to open an issue.