1.0.3 • Published 4 months ago

wav-decoder-ts v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

wav-decoder-ts

NPM Version License: MIT

promise-based wav decoder

Installation

npm install wav-decoder-ts

API

  • decode(src: ArrayBuffer, [opts: object]): Promise<AudioData>
    • if provide an instance of Buffer, it is converted to ArrayBuffer like Uint8Array.from(src).buffer implicitly.
    • opts.symmetric decode to symmetrical values
  • decode.sync(src: ArrayBuffer, [opts: object]): AudioData
    • synchronous version
Returns
interface AudioData {
  sampleRate: number;
  channelData: Float32Array[];
}

Usage

const fs = require("fs");
const WavDecoder = require("wav-decoder");

const readFile = (filepath) => {
  return new Promise((resolve, reject) => {
    fs.readFile(filepath, (err, buffer) => {
      if (err) {
        return reject(err);
      }
      return resolve(buffer);
    });
  });
};

readFile("foobar.wav").then((buffer) => {
  return WavDecoder.decode(buffer);
}).then(function(audioData) {
  console.log(audioData.sampleRate);
  console.log(audioData.channelData[0]); // Float32Array
  console.log(audioData.channelData[1]); // Float32Array
});

License

MIT

1.0.3

4 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago