Skip to content

Releases: rochars/wavefile

v9.1.0

03 Jan 22:01
Compare
Choose a tag to compare
  • Read and write iXML chunks
  • Read and write _PMX chunks
    To change the value of iXML of _PMX chunks:
wav.setiXML(iXMLValue);
wav.set_PMX(_PMXValue);

Fix: chunkSize of LIST subChunks that have string values

v9.0.3

03 Jan 07:16
Compare
Choose a tag to compare

Fix: remove extra field from ltxt chunks to fix wav regions labels

v9.0.2

03 Jan 03:15
Compare
Choose a tag to compare
  • Fix: add padding byte on bext when byte number is odd to avoid writing currupted files

v9.0.1

02 Jan 02:39
Compare
Choose a tag to compare

version 9.0.1 - 2020-01-02

  • Update byte-data@18 for performance improvement
  • Use custom base64-arraybuffer implementation to avoid peer dependecy warnings

v9.0.0

01 Jan 06:34
Compare
Choose a tag to compare

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

12 Sep 16:02
Compare
Choose a tag to compare
  • 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

8.4.5

25 Jul 18:23
Compare
Choose a tag to compare

Fix UTF8 reading in cue markers.

8.4.4

09 Aug 19:29
Compare
Choose a tag to compare

version 8.4.4 (2018-08-09)

  • Fix: browser directive in package.json

8.4.3

07 Aug 22:24
Compare
Choose a tag to compare

version 8.4.3 (2018-08-07)

  • Fix: Stop adding a extra sample when changing the bit depth
  • Fix: Add padding byte if sample buffer lenght is odd

8.4.2

07 Aug 01:52
Compare
Choose a tag to compare

version 8.4.2 (2018-08-06)

  • Use ArrayBufferView to represent TypedArray in index.d.ts
  • Use WaveFile.prototype in externs/wavefile.js