Releases: rochars/wavefile
Releases · rochars/wavefile
v9.1.0
v9.0.3
v9.0.2
v9.0.1
v9.0.0
version 9.0.0 - 2019-12-31
- New package structure:
- dist file is "./dist/wavefile.js", a UMD served as "main"
- ES6 source is "./index.js", served as "module"
- WaveFile class is no longer a default export. You should use like this:
Node.js:
const WaveFile = require('uint-buffer').WaveFile;
Browser:
<script src="wavefile.js"></script>
<script>
var WaveFile = wavefile.WaveFile;
var wav = new WaveFile();
</script>
8.4.6
- Fix: clicks and time changes in ADPCM compression/decompression
- Fix: Range error bug when converting some files to ADPCM
- Fix: The length of the output array when converting to ADPCM
- Fix: properly reset chunks in WaveFile objects when using the same object to read multiple files or performing conversions.
- Fix: keep metadata when performing bit depth conversions or applying compression