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

@soundtouchjs/worklet-base

v2.0.3

Published

Abstract base processor for SoundTouchJS AudioWorklet packages

Readme

@soundtouchjs/worklet-base

Abstract base class for SoundTouchJS AudioWorklet processor packages. Centralises the shared DSP pipeline, runtime-update queue, and sample-buffer management that would otherwise be duplicated across every processor implementation.

I accept cash if you like what's been done.

Part of the SoundTouchJS monorepo — for more information and so much more.

Who this package is for

This package is an implementation detail of the SoundTouchJS worklet packages (@soundtouchjs/audio-worklet, @soundtouchjs/phase-vocoder-worklet, @soundtouchjs/formant-correction-worklet). It is also the correct starting point if you want to build a custom AudioWorklet processor on top of the SoundTouch engine.

If you only want to use SoundTouchJS in a web app, install one of the worklet packages above — you do not need to install this package directly.

Installation

npm install @soundtouchjs/worklet-base

Usage

Extend SoundTouchProcessorBase inside your processor module and implement the required onProcessComplete hook:

import { SoundTouchProcessorBase, STANDARD_PARAMETER_DESCRIPTORS } from '@soundtouchjs/worklet-base';
import type { ProcessCoreResult } from '@soundtouchjs/worklet-base';

class MyProcessor extends SoundTouchProcessorBase {
  static get parameterDescriptors() {
    return STANDARD_PARAMETER_DESCRIPTORS;
  }

  constructor() {
    super('[MyProcessor]', {});
  }

  onProcessComplete(result: ProcessCoreResult): void {
    // called after each block; post metrics, trigger side-effects, etc.
    this.port.postMessage({ type: 'metrics', ...result });
  }
}

registerProcessor('my-processor', MyProcessor);

Optional hooks

| Method | When to override | |---|---| | beforePipeProcess(left, right, frameCount, params) | Pre-pipe analysis (e.g. LPC analysis for formant correction). Default is a no-op. | | extractSamples(leftOutput, rightOutput, frameCount) | Full extraction/write-back override (e.g. formant synthesis). Default writes both channels and returns RMS/peak metrics. |

Runtime messages

Send messages to the processor via AudioWorkletNode.port.postMessage:

// Change interpolation strategy
node.port.postMessage({ type: 'setInterpolationStrategy', value: 'lanczos' });

// Update strategy parameters
node.port.postMessage({ type: 'setInterpolationStrategyParams', value: { ... } });

// Update stretch parameters
node.port.postMessage({ type: 'setStretchParameters', value: { ... } });

API

SoundTouchProcessorBase

Abstract class extending AudioWorkletProcessor.

Constructor

new SoundTouchProcessorBase(processorLabel: string, pipeOptions: SoundTouchOptions)

| Parameter | Description | |---|---| | processorLabel | Label used in log messages (e.g. '[MyProcessor]'). | | pipeOptions | Options forwarded to SoundTouch (interpolation strategy, stretch parameters, etc.). |

Abstract method

abstract onProcessComplete(result: ProcessCoreResult): void

Called at the end of every successfully processed block. result contains { outputRms, outputPeak } unless extractSamples is overridden to return different values.

Static method

static resolveStrategy(
  id: RateTransposerInterpolationStrategy | undefined,
  label: string,
): RateTransposerInterpolationStrategy | undefined

Validates an interpolation strategy ID against the registry. Falls back to 'lanczos' and logs a warning for unknown IDs.

STANDARD_PARAMETER_DESCRIPTORS

Array of AudioParamDescriptor objects for the three standard k-rate parameters: pitch, pitchSemitones, and playbackRate. Spread this into your parameterDescriptors getter.

Message types

| Export | Description | |---|---| | SetInterpolationStrategyMessage | { type: 'setInterpolationStrategy', value: RateTransposerInterpolationStrategy } | | SetInterpolationStrategyParamsMessage | { type: 'setInterpolationStrategyParams', value: InterpolationStrategyParams } | | SetStretchParametersMessage | { type: 'setStretchParameters', value: StretchParameters } | | ProcessorMessage | Union of the three message types above. | | ProcessCoreResult | { outputRms: number, outputPeak: number } |

License

MPL-2.0