npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@eliware/resampler

v1.1.3

Published

A pure JavaScript, high-quality PCM audio resampler for Node.js. Converts s16le PCM between arbitrary sample rates and channel layouts (mono/stereo) with windowed-sinc filtering.

Readme

eliware.org

@eliware/resampler npm versionlicensebuild status

A pure JavaScript, high-quality PCM audio resampler for Node.js. Converts s16le PCM between arbitrary sample rates and channel layouts (mono/stereo) with windowed-sinc filtering. Includes built-in volume control.


Table of Contents

Features

  • Pure JavaScript, no native dependencies
  • High-quality windowed-sinc resampling with anti-alias filtering
  • Arbitrary input/output sample rates (e.g. 48kHz ↔ 24kHz)
  • Channel mixing: stereo→mono (average), mono→stereo (duplicate)
  • Streams API: drop-in replacement for ffmpeg pipes in Node.js
  • Supports s16le PCM (signed 16-bit little-endian)
  • Built-in output volume control
  • TypeScript type definitions included

Requirements

  • Node.js 26 or newer
  • s16le PCM input for stream processing

Installation

npm install @eliware/resampler

Usage

ESM Example

import { Resampler } from '@eliware/resampler';
import fs from 'fs';

// Downsample 48kHz stereo to 24kHz mono
const resampler = new Resampler({ inRate: 48000, outRate: 24000, inChannels: 2, outChannels: 1 });
fs.createReadStream('input-48k-stereo.s16le')
  .pipe(resampler)
  .pipe(fs.createWriteStream('output-24k-mono.s16le'));

// Downsample with half volume
const resamplerQuiet = new Resampler({ inRate: 48000, outRate: 24000, inChannels: 2, outChannels: 1, volume: 0.5 });
fs.createReadStream('input-48k-stereo.s16le')
  .pipe(resamplerQuiet)
  .pipe(fs.createWriteStream('output-24k-mono-quiet.s16le'));

API

Resampler(options)

Creates a Transform stream that resamples s16le PCM audio.

Options

  • inRate (number): Input sample rate, finite, greater than 0, and at most 1,000,000 (e.g. 48000)
  • outRate (number): Output sample rate, finite, greater than 0, and at most 1,000,000 (e.g. 24000)
  • inChannels (number, default 1): Number of input channels (1=mono, 2=stereo)
  • outChannels (number, default 1): Number of output channels (1=mono, 2=stereo)
  • filterWindow (number, default 8): Positive integer sinc filter window size, at most 4096 (higher = better quality, more CPU)
  • volume (number, default 1.0): Finite output volume multiplier (0.0 = silence, 1.0 = unchanged, >1.0 = amplify, negative = polarity inversion)

Example

const resampler = new Resampler({ inRate: 48000, outRate: 24000, inChannels: 2, outChannels: 1, volume: 0.5 });

Input must contain complete s16le PCM frames. Incomplete frames split across stream chunks are buffered; an incomplete final frame emits an error.

Filter latency and output length

The sinc filter introduces edge latency. Output begins after enough input is available for the configured filter window, and the stream flush pads the input with filterWindow zero samples to emit the available tail. Consequently, output length includes the filter's edge behavior and may differ slightly from the simple inputFrames * outRate / inRate estimate. For exact framing, treat the emitted stream length as authoritative.

Pipe PCM data through the resampler:

inputStream.pipe(resampler).pipe(outputStream);

Errors / Troubleshooting

Options are validated before processing. Supported channel layouts are mono and stereo. Input must contain complete s16le frames; an incomplete final frame emits an error. Filter latency and output length include documented edge behavior.

Development

npm test
npm run test:gaps
npm run lint
npm run typecheck
npm run pack
npm run benchmark -- 48000 5 960

Security

The resampler performs local audio processing and has no network access. Treat input/output paths, file streams, and any audio data as application-controlled resources; validate untrusted paths and avoid exposing sensitive audio in logs or artifacts.

TypeScript

Type definitions are included:

import { Resampler, ResamplerOptions } from '@eliware/resampler';

const resampler: Resampler = new Resampler({
  inRate: 48000,
  outRate: 24000,
  inChannels: 2,
  outChannels: 1,
  volume: 0.5,
});

Support

For help, questions, or to chat with the author and community, visit:

Discordeliware.org

eliware.org on Discord

License

MIT © 2025 Eli Sterling, eliware.org

Links