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

@wordpress/video-conversion

v0.2.0

Published

Client-side video conversion for WordPress. Currently converts animated GIFs to MP4/WebM via WebCodecs.

Readme

@wordpress/video-conversion

Client-side video conversion package used by @wordpress/upload-media. It currently converts animated GIFs to MP4/WebM during media upload.

This package is not used directly. When an animated GIF is uploaded, its frames are decoded using the browser's native ImageDecoder API and re-encoded via WebCodecs (VideoEncoder) using the mediabunny library as an internal implementation detail. All processing runs inside a Web Worker to keep the main thread responsive.

Installation

Install the module:

npm install @wordpress/video-conversion --save

Requirements

  • WebCodecs support: the browser must expose ImageDecoder and VideoEncoder (available in Chromium-based browsers and Safari 16.4+).
  • Web Workers support: the browser must support Web Workers.

API Reference

cancelOperations

Cancels all ongoing operations for a given item ID.

Cancellation takes effect at async boundaries (waiting for the lock, encoder-support check, decoder completion, between frames).

Parameters

  • id ItemId: Item ID.

Returns

  • Promise< boolean >: Whether an operation was cancelled.

convertGifToVideo

Converts an animated GIF to a video file (MP4 or WebM).

Decodes GIF frames via the browser ImageDecoder (honoring per-frame delays) and re-encodes them with mediabunny / WebCodecs.

Accepts the GIF as a Blob so the bytes are read once, here in the worker, instead of being materialized on the main thread and transferred. An ArrayBuffer is still accepted for direct callers and tests.

Parameters

  • id ItemId: Item ID.
  • gifSource ArrayBuffer | Blob: GIF file as a Blob/File or ArrayBuffer.
  • outputMimeType string: Output MIME type ('video/mp4' or 'video/webm').
  • maxDimensions number: Optional maximum dimension for downscaling.

Returns

  • Promise< ArrayBuffer >: Encoded video buffer.

UNSUPPORTED_ERROR_PREFIX

Message prefix for "unsupported but graceful" outcomes (no WebCodecs, unsupported codec). Consumers detect this prefix and fall back to uploading the original GIF instead of surfacing a hard error.

The contract is the message prefix, not the Error type: the worker RPC layer (comctx) serializes a thrown error to its message string only - the Error subclass, name, and stack do not survive the worker boundary.