silk2wav 0.1.0

Converts silk to wav
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 17.58 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 249.55 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 44s Average build duration of successful builds.
  • all releases: 44s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • super1207

silk2wav

Converts silk to wav

install

cargo add silk2wav

example

use silk2wav::silk2wav;

fn main() {
    let silk_buf = std::fs::read("music.silk").unwrap();
    let wav_buf = silk_to_wav(&silk_buf, 24000).unwrap();
    std::fs::write("music.wav", &wav_buf).unwrap();
}