New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

resampler

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

resampler

PCM audio sample rate conversion for Node.js

latest
Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
9
800%
Maintainers
1
Weekly downloads
 
Created
Source

node-resampler

PCM audio sample rate conversion for Node.js

Requirements

You must have libresample installed.

  • Debian/Ubuntu via Apt:
$ sudo apt-get install libresample1-dev
  • OS X - Install via homebrew (not yet in master):
$ brew install https://raw.github.com/xdissent/homebrew/d4f55ba336d66473e7bf167901a0c575c0c4ae17/Library/Formula/libresample.rb

Installation

Install with npm:

$ npm install resampler

or via git:

$ npm install git+https://github.com/xdissent/node-resampler.git

Usage

The resampler module exports a stream.Transform subclass:

var Resampler = require('resampler');

// Pass the input and output sample rates to the constructor:
var resampler = new Resampler(44100, 22050);

// Optionally choose low quality:
// var resampler = new Resampler(44100, 22050, Resampler.QUALITY_LO);

// Treat it like any other transform stream:
process.stdin.pipe(resampler).pipe(process.stdout);
// $ cat audio.pcm | node resample.js > resampled.pcm

Examples

Lofi-ify by downsampling by a ridiculous factor:

Resampler = require 'resampler'

downer = Resampler.new 44100, 1337
upper = Resampler.new 1337, 44100

process.stdin.pipe(downer).pipe(upper).pipe(process.stdout)
# $ cat audio.pcm | coffee lofi.coffee > lofi.pcm

FAQ

Keywords

audio

FAQs

Package last updated on 12 May 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts