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

analyze-video

v1.0.0

Published

Local-first video analysis CLI with evidence-backed outputs.

Readme

analyze-video

VideoAnalysis is Momenta's installable video-understanding engine. It combines local Apple Silicon analysis with paid provider routes, using the same account, credit balance, usage ledger, and Stripe billing as VibeEdit.

Customer installation

Version 1.0.0 supports Apple Silicon Macs (darwin-arm64) with Node.js 20 or newer. The installer checks for Python 3.12, FFmpeg, and FFprobe, and can install missing prerequisites with Homebrew.

npm install -g analyze-video
analyze-video install

The second command creates a private Python environment, installs pinned dependencies, downloads the versioned models, verifies every download by SHA-256, and records the active runtime under ~/Library/Application Support/VideoAnalysis.

Create or sign in to the shared Momenta account at video-analysis-theta.vercel.app/account. Create a revocable package API key there, then connect the CLI:

analyze-video login
analyze-video doctor
analyze-video analyze --video /absolute/path/to/video.mp4 --mode fast

The API key is stored with owner-only permissions in the user's platform config directory. The database stores only its HMAC digest. The CLI exchanges it for a short-lived Supabase session; Stripe and provider secrets never ship in the package.

Data and billing

  • Source footage and analysis artifacts stay in the workspace selected by the customer.
  • Accounts, subscriptions, credit grants, reservations, usage, and refunds use the shared VibeEdit Supabase project.
  • Checkout and the billing portal are hosted by Stripe.
  • Paid provider requests are authorized server-side and recorded against the shared credit ledger.
  • Package keys can be listed and revoked from the web account.

Development

bun install
bun run verify
bun run verify:web
bun run build:release

verify type-checks the source, runs the complete V3 test suite, verifies the local runtime and model hashes, checks Python imports, and builds the library and CLI. build:release creates the website archive in web/downloads.

The default export provides portable domain, headless, and client contracts. The standalone entrypoint is analyze-video/standalone.

import {
  createStandaloneRunAnalysisV3Controller,
  registerStandaloneRunAnalysisV3Media,
} from "analyze-video/standalone"

Distribution and licensing

The package remains UNLICENSED; public installation does not grant rights to proprietary source or models. The production runtime contains separately licensed third-party components. In particular, adapted Ultralytics runtime source is accompanied by its AGPL-3.0 text and provenance record in resources/production-analysis-runtime.

Do not describe this package as open source or change its license without a deliberate legal review of the proprietary models, model training-data terms, and all third-party components.

Independence

This repository is an independent copy of the VideoAnalysis implementation. It does not import source files from the VibeEdit repository. The two products share commercial infrastructure only through authenticated server APIs and the shared database schema.