Skip to content

Releases: rochars/wavefile-reader

v1.1.1

02 Jan 17:41

Choose a tag to compare

v1.1.1 - 2020-01-02

Fix: loadSamples should default to true during object creation

v1.1.0

02 Jan 17:26

Choose a tag to compare

v1.1.0 - 2020-01-02

Allow loading a file during object creation. Now you instead of:

let wav = new WaveFileReader();
wav.fromBuffer(someFile);

you can also:

let wav = new WaveFileReader(someFile);

Both methods support the loadSamples optional boolean param.
By default loadSamples is set to true (file samples should be loaded);
if set to false, the samples in the file are not loaded.

v1.0.0

02 Jan 08:13

Choose a tag to compare

Read data from wav files.