bwavfile-0.1.0 has been yanked.
bwavfile
Rust Wave File Reader/Writer with Broadcast-WAV, MBWF and RF64 Support
This is currently a work-in-progress!
Use
let path = "tests/media/ff_silence.wav";
let mut w = open?;
let length = w.frame_length?;
let format = w.format?;
let bext = w.broadcast_extension?;
println!;
println!;
let frame_reader = w.audio_frame_reader?;
let mut buffer: = w.create_frame_buffer;
while
Note on Testing
All of the media for the integration tests is committed to the respository
in either zipped form or is created by ffmpeg. Before you can run tests,
you need to cd into the tests directory and run the create_test_media.sh
script.