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

@audio/voice

v1.0.2

Published

Voice synthesis — umbrella for @audio/voice-* atoms (vocal tract, voder, glottal source)

Downloads

398

Readme

@audio/voice

Voice synthesis (speech analysis/processing lives in @audio/speech-*).

| Package | What | |---|---| | @audio/voice-glottis | LF (Fant–Liljencrants–Lin) / Rosenberg glottal source — generator | | @audio/voice-tract | Kelly-Lochbaum waveguide tract — Pink Trombone class (zakaton fork) — filter | | @audio/voice-voder | Dudley 1939 Voder recreation (gmoe/voder) — frame sequencer |

Three distinct signatures, chained glottis → tract for articulatory synthesis, or voder standalone:

import { glottis, tract, voder, VOWELS, BANDS } from '@audio/voice'

let excitation = glottis({ f0: 120, duration: 0.5 })       // → Float32Array (generator)
let vowel = tract(excitation, { shape: 'a' })               // Float32Array → Float32Array (filter)

let speech = voder([
	{ gains: [0,0,1,0,0,0,0,0,0,0], f0: 110, duration: 0.4 },  // frame: 10-band gains
])                                                            // frames[] → Float32Array

glottis(opts: {f0=120, duration=1, fs=44100, model='lf', Rd=1.7, jitter=0.005, shimmer=0.03, aspiration=0.01, seed}) → Float32Array

tract(excitation: Float32Array, opts: {shape='a' (vowel name in VOWELS | area array), sections=24, lipReflection=-0.85, glottalReflection=0.75, damping=0.996, fs=44100}) → Float32Array

voder(frames: Array<{gains: number[10], voiced=true, f0=110, duration=0.15}>, opts: {fs=44100, amp=0.8, seed}) → Float32ArrayBANDS = the 10 channel center frequencies (225 Hz–7.5 kHz).

The site-todo "Voice generator (via natural tract gen)" idea. TTS = external/ML lane (see @audio/neural). Consumers: mridangam-syllable experiments, De-Slop resynthesis, speech-world.