wave-d 1.0.0

WAV file loader/emitter.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

What's this?

wave-d is a tiny library to load/save WAV audio files.

Licenses

See UNLICENSE.txt

Usage


import std.stdio;
import waved;

void main()
{
    Sound input = decodeWAV("my_wav_file.wav");
    writefln("channels = %s", input.numChannels);
    writefln("samplerate = %s", input.sampleRate);
    writefln("samples = %s", input.data.length);

    input.encodeWAV("copy.wav");
}

Authors:
  • ponce
Dependencies:
none
Versions:
1.0.8 2021-Dec-30
1.0.7 2018-May-23
1.0.6 2016-Dec-07
1.0.5 2016-Dec-01
1.0.4 2016-Nov-17
Show all 10 versions
Download Stats:
  • 12 downloads today

  • 85 downloads this week

  • 385 downloads this month

  • 73409 downloads total

Score:
3.2
Short URL:
wave-d.dub.pm