@theojl6/node-pcm-mixer
v0.1.2
Published
Mix two PCM buffers into one
Downloads
5
Readme
node-pcm-mixer
Mix two PCM buffers into one
Features
- 16 bit LPCM mixing
Installation
npm install node-pcm-mixerUsage
const { mixLpcm } = require("@theojl6/node-pcm-mixer");
const buf1 = fs.readFileSync("0.pcm");
const buf2 = fs.readFileSync("1.pcm");
const mixedLpcm = mixLpcm(buf1, buf2);This project was bootstrapped by create-neon.
