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

v12.3.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.25x - 4.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.resume();          // Resume from the current position (does NOT reset to 0)

// Clean up
playout.dispose();

API

MediaElementPlayout

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

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

  // Track management
  addTrack(options: MediaElementTrackOptions): MediaElementTrack;
  setSource(options: MediaElementTrackOptions): MediaElementTrack;  // silent in-place replace
  removeTrack(trackId: string): void;
  getTrack(trackId: string): MediaElementTrack | undefined;

  // Playback
  play(when?: number, offset?: number, duration?: number): void;
  resume(): void;            // resume from current position (no reset to 0)
  pause(): void;
  stop(): void;
  seekTo(time: number): void;
  getCurrentTime(): number;

  // Lifecycle events (typed via MediaElementTrackEvents)
  on<K extends keyof MediaElementTrackEvents>(event: K, listener: MediaElementTrackEvents[K]): void;
  off<K extends keyof MediaElementTrackEvents>(event: K, listener: MediaElementTrackEvents[K]): void;

  // Volume & Rate
  setMasterVolume(volume: number): void;
  setPlaybackRate(rate: number): void;  // 0.25 to 4.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 (optional — omit for scrubber-only / headless players)
  id?: string;
  name?: string;
  volume?: number;
  playbackRate?: number;
}

Player Mode

Beyond the timeline/editor API, three affordances make this engine pleasant to reuse as a single-track player (podcast/audiobook players, <daw-player>):

// Resume from the current position (play() with no offset resets to 0)
playout.resume();

// Swap to the next source in place — no "Only one track is supported" warning,
// and any Web Audio routing/effects are preserved across the swap
playout.setSource({ source: '/audio/episode-2.mp3', name: 'Episode 2' });

// Observe media lifecycle without reaching into the audio element
playout.on('loadedmetadata', () => console.log('duration:', playout.duration));
playout.on('play', () => updateTransportUI('playing'));
playout.on('pause', () => updateTransportUI('paused'));
playout.on('error', (err) => surfaceError(err));
playout.off('play', handler); // unsubscribe

on() listeners are retained across setSource() swaps — register them once. The same on()/off() and resume()/load() methods exist on MediaElementTrack for power users. Event names and payloads are typed via MediaElementTrackEvents.

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