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

@waveform-playlist/media-element-playout

v7.1.2

Published

HTMLMediaElement-based playout engine for waveform-playlist with pitch-preserving playback rate

Readme

@waveform-playlist/media-element-playout

A lightweight, HTMLMediaElement-based playout engine for waveform-playlist with pitch-preserving playback rate control.

Features

  • Pitch-preserving playback rate (0.5x - 2.0x) - uses browser's built-in time-stretching
  • Pre-computed peaks - no AudioBuffer decoding required, instant visualization
  • Lightweight - no Tone.js dependency
  • Simple API - designed for single-track playback use cases

When to Use

Use MediaElementPlayout when you need:

  • Playback speed control for language learning, podcasts, etc.
  • Single-track playback with minimal overhead
  • Quick load times with pre-computed peaks

Use TonePlayout from @waveform-playlist/playout when you need:

  • Multi-track mixing and editing
  • Clip-level effects and fades
  • Precise sample-accurate timing

Installation

npm install @waveform-playlist/media-element-playout

Usage

import { MediaElementPlayout } from '@waveform-playlist/media-element-playout';
import WaveformData from 'waveform-data';

// Load pre-computed peaks
const response = await fetch('/audio/podcast.dat');
const arrayBuffer = await response.arrayBuffer();
const peaks = WaveformData.create(arrayBuffer);

// Create playout
const playout = new MediaElementPlayout({
  masterVolume: 1.0,
  playbackRate: 1.0,
});

// Add a track
playout.addTrack({
  source: '/audio/podcast.mp3',  // URL or Blob URL
  peaks: peaks,
  name: 'Podcast Episode 1',
});

// Control playback
playout.play(0);           // Play from beginning
playout.setPlaybackRate(0.75);  // Slow down to 75% speed (pitch preserved)
playout.pause();
playout.seekTo(30);        // Seek to 30 seconds
playout.play();            // Resume

// Clean up
playout.dispose();

API

MediaElementPlayout

interface MediaElementPlayoutOptions {
  masterVolume?: number;  // 0.0 to 1.0 (default: 1.0)
  playbackRate?: number;  // 0.5 to 2.0 (default: 1.0)
}

class MediaElementPlayout {
  // Lifecycle
  init(): Promise<void>;  // No-op for media element
  dispose(): void;

  // Track management
  addTrack(options: MediaElementTrackOptions): MediaElementTrack;
  removeTrack(trackId: string): void;
  getTrack(trackId: string): MediaElementTrack | undefined;

  // Playback
  play(when?: number, offset?: number, duration?: number): void;
  pause(): void;
  stop(): void;
  seekTo(time: number): void;
  getCurrentTime(): number;

  // Volume & Rate
  setMasterVolume(volume: number): void;
  setPlaybackRate(rate: number): void;  // 0.5 to 2.0, pitch preserved

  // State
  readonly isPlaying: boolean;
  readonly duration: number;
  readonly playbackRate: number;
}

MediaElementTrack

interface MediaElementTrackOptions {
  source: string | HTMLAudioElement;  // URL or audio element
  peaks: WaveformDataObject;          // Pre-computed peaks
  id?: string;
  name?: string;
  volume?: number;
  playbackRate?: number;
}

Generating Peaks

Use audiowaveform or waveform-data.js to pre-compute peaks:

# Generate peaks file with audiowaveform
audiowaveform -i audio.mp3 -o peaks.dat -b 16

Browser Support

Pitch-preserving playback rate is supported in:

  • Chrome 77+
  • Firefox 20+
  • Safari 14.1+
  • Edge 79+

Older browsers will still work but may change pitch with speed.

License

MIT