1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 4, 2025 |
---|
#43 in #wav
Used in aloe-exports
1.5MB
12K
SLoC
Aloe-WAV
Aloe-WAV is a sophisticated Rust library purposefully engineered to facilitate the reading and writing of WAV audio file formats comprehensively. This crate provides robust support for standard WAV handling, including the ability to manipulate complex metadata attributes associated with Broadcast Wave Format (BWAV), cues, regions, and other waveform annotations. The library enables efficient audio data processing through advanced memory-mapped IO optimizations and customizable audio channel configurations.
Features
- WAV and BWAV Support: Streamlines operations related to common WAV files and their broadcast extensions.
- Metadata Handling: Read, write, and manipulate various metadata chunks like
bext
,smpl
,cue
,axml
, acid loop chunks, and more. - Channel Layouts and Sample Rates: Supports a wide array of channel layouts and sampling rates, making it adaptable to numerous audio processing conditions.
- Snapshot-Safe Operations: Ensures audio integrity with capabilities to update metadata without rewriting entire file contents.
- Advanced Memory Management: Benefit from optimized performance with memory-mapped file reading.
- Custom Audio Formats: Handle extensible subgroup formats and OGG Vorbis encapsulated within WAV files.
Usage
To use the library, add this line to your Cargo.toml
under [dependencies]
:
aloe-wav = "0.1.0"
Example
Here's a simple demonstration of how to read a WAV file using Aloe-WAV:
use std::fs::File;
use aloe_wav::WavAudioFormat;
fn main() {
let file = File::open("test.wav").unwrap();
let format = WavAudioFormat::default();
if let Some(reader) = format.create_reader_for(&file, true) {
println!("Sample Rate: {}", reader.get_sample_rate());
} else {
println!("Failed to read WAV file");
}
}
Contribution
Aloe-WAV welcomes contributions, feedback, and suggestions via GitHub.
License
This project is licensed under the terms of the GNU General Public License v3.0 or later.
This README.md file was generated by an AI model and may not be 100% accurate, but it should be pretty good.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~28–38MB
~616K SLoC