Skip to content

High performance WAV file decoder and encoder for node

Notifications You must be signed in to change notification settings

andreasgal/node-wav

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-wav

Build Status

High performance WAV decoder and encoder. The decoder is up to 750x faster than the 'wav-decoder' npm module.

In addition, in contrast to 'wav-decoder' the result is returned directly instead of with a promise.

This module combines the functionality of 'wav-decoder' and 'wav-encoder'.

Usage

let fs = require('fs');
let wav = require('node-wav');

let buffer = fs.readFileSync('file.wav');
let result = wav.decode(buffer);
console.log(result.sampleRate);
console.log(result.channelData); // array of Float32Arrays

wav.encode(result.channelData, { sampleRate: result.sampleRate, float: true, bitDepth: 32 });

Data format

Data is always returned as Float32Arrays. While reading and writing 64-bit float WAV files is supported, data is truncated to 32-bit floats.

Endianness

This module assumes a little endian CPU, which is true for pretty much every processor these days (in particular Intel and ARM).

About

High performance WAV file decoder and encoder for node

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages