Skip to content
/ onda Public

Simple WAV file reader and writer written in Rust

License

Notifications You must be signed in to change notification settings

cdmiguel/onda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

onda

Simple WAV file reader and writer written in Rust.

Examples

// Read a WAV file
let wavdata = onda::read("foo.wav").unwrap();

// Write a WAV file
onda::write(wavdata.audiodata, wavdata.samplerate, "bar.wav").unwrap();