14 releases

0.1.14 Feb 16, 2024
0.1.13 Feb 11, 2024
0.1.12 Oct 3, 2023
0.1.11 Jul 30, 2023
0.1.4 Mar 29, 2022

#109 in Audio

Download history 12/week @ 2023-12-25 88/week @ 2024-01-01 71/week @ 2024-01-08 44/week @ 2024-01-15 116/week @ 2024-01-22 58/week @ 2024-01-29 11/week @ 2024-02-05 239/week @ 2024-02-12 92/week @ 2024-02-19 64/week @ 2024-02-26 14/week @ 2024-03-04 50/week @ 2024-03-11 67/week @ 2024-03-18 29/week @ 2024-03-25 55/week @ 2024-04-01 20/week @ 2024-04-08

174 downloads per month
Used in autd3-modulation-audio-fi…

MIT license

67KB
1.5K SLoC

wav_io

This is a crate for reading and writing wav file.

Suported format:

  • PCM 8, 16, 24, 32 bits Int
  • PCM 32, 64 bits Float

Functions

Install

Add wav_io to your project:

cargo add wav_io

Samples

use std::f32::consts::PI;
fn main() {
    // make sine wave
    let head = wav_io::new_mono_header();
    let mut samples: Vec<f32> = vec![];
    for t in 0..head.sample_rate {
        let v = ((t as f32 / head.sample_rate as f32) * 440.0 * 2.0 * PI).sin() * 0.6;
        samples.push(v);
    }
    // write to file
    let mut file_out = std::fs::File::create("./sine.wav").unwrap();
    wav_io::write_to_file(&mut file_out, &head, &samples).unwrap();
}

Example

No runtime deps