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

@timephy/rnnoise-wasm

v1.0.0

Published

This library implements the RNNoise noise suppression library as a WASM module for use in web frontends.

Downloads

199

Readme

@timephy/rnnoise-wasm

This library implements the RNNoise noise suppression library as a WASM module for use in web frontends.

This repository contains the necessary utilities to build RNNoise using a Docker build environment, compile it to WASM with Emscripten, and export a JavaScript library from the contained TypeScript source code.

Forked from @jitsi/rnnoise-wasm

This library was originally forked from @jitsi/rnnoise-wasm.

Changes

Resources

How to use

import { NoiseSuppressorWorklet_Name } from "@timephy/rnnoise-wasm"
// This is an example how to get the script path using Vite, may be different when using other build tools
// NOTE: `?worker&url` is important (`worker` to generate a working script, `url` to get its url to load it)
import NoiseSuppressorWorklet from "@timephy/rnnoise-wasm/NoiseSuppressorWorklet?worker&url"

async function example() {
    // Load the NoiseSuppressorWorklet into the AudioContext
    const ctx = new AudioContext()
    await ctx.audioWorklet.addModule(NoiseSuppressorWorklet)

    // Instantiate the Worklet as a Node
    const noiseSuppressionNode = new AudioWorkletNode(ctx, NoiseSuppressorWorklet_Name)

    // Setup the node graph
    const stream = new MediaStream() // containing the microphone track
    const source = ctx.createMediaStreamSource(stream)
    source
        .connect(noiseSuppressionNode) // pass audio through noise suppression
        .connect(ctx.destination) // playback audio on output device
}

Build

Prerequisites

  • node - tested version v10.16.3
  • npm - tested version v6.9.0
  • docker - tested version 19.03.1

Building

Building is straightforward, run:

# To build RNNoise, compile it into WASM, and build TypeScript
npm run build

The repository already has a pre-compiled WASM under the src/generated folder, running the above command will replace it with the newly compiled binaries and glue wasm .js file respectively.

In order to facilitate the build with docker the following prebuilt image is used emscripten/emsdk however, it is slightly altered by installing autotools components necessary for building rnnoise.

In summary the build process consists of three steps:

  1. build:dockerfile - pulls in emscripten/emsdk which is then altered and saved. Any subsequent build is going to check if the images was already installed and use that, so if one wants to make changes to the Dockerfile be sure to first delete the build image from your local docker repo.
  2. build:emscripten - mounts the repo to the docker image from step one and runs build.sh on it. The bash script contains all the steps necessary for building rnnoise as a wasm module.
  3. build:typescript - exports the TypeScript source code to JavaScript and type declaration files