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 🙏

© 2024 – Pkg Stats / Ryan Hefner

pcm-transform

v1.0.2

Published

Transformation stream for PCM data

Downloads

7

Readme

pcm-transform

Build Status Build Status

A transform stream that reads PCM data and transforms with built-in or custom functions.

Batches up samples from a PCM stream to a configurable amount (batchSize) and passes them into a configurable transform function so that they can be processed by proximity, like for making waveform data for visualizations.

Install

npm install pcm-transform

Usage

var fs = require("fs");
var lame = require("lame");
var PCMTransform = require("pcm-transform");

fs.createReadStream("TesseracT - Concealing Fate, Part One: Acceptance.mp3")
  .pipe(new lame.Decoder)
  .pipe(PCMTransform({ batchSize: 20000 })
  .pipe(fs.createWriteStream("waveform.data");

API

PCMTransform()

Constructor for a transform stream. Takes the following config options:

  • batchSize - Number of samples to batch together to be transformed. If using 16 bit samples in stereo (2 channels), each sample would be 4 bytes. (required)
  • json - Whether or not to write downstream a buffer than is JSON.parse'able. (default: false). See Rendering JSON section later.
  • inputChannels - Number of channels on the input PCM stream. (default: 2)
  • inputBitDepth - Number of bits per sample (per channel). (default: 16)
  • outputBitDepth - Number of bits per value for output. Used to convert buffers from transform functions into JSON. (default: inputBitDepth)
  • transform - Either a string name of a default transform (min-max), or a supplied transform function. The function takes as arguments buffer, stream, and callback. Any error or data passed into the callback gets emitted, or written downstream, accordingly. See [#custom%20transforms](Custom Transforms) for more info.
  • head - A buffer or string that gets written downstream when the streaming starts.
  • tail - A buffer or string that gets written downstream when the streaming completes.

Transforms

min-max

Takes the batch of samples and returns the min and max value amongst all samples (regardless of channel) per batch. Results in a buffer of data with sequences of min/max pairs in the form of:

MIN_1 MAX_1 MIN_2 MAX_2 .... MIN_N MAX_N

This is similar to audiowaveform format.

Custom Transforms

TODO

JSON Rendering

Specifying json: true in the constructor will result in a buffer stream that can be JSON.parsed. The array of values is stored in the data property. Example of default JSON buffer:

{
  "data": [0, 100, 200, ..., 400]
}

The property name and other fields can be customized by providing a head or tail configuration to overwrite the defaults for JSON.

Testing

npm test

License

MIT License, Copyright (c) 2015 Jordan Santell