
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@teunlao/vidin
Advanced tools
Turn a video (bug report, screen recording) into an agent-readable set of annotated keyframes. CLI + MCP server; the only native dependency is ffmpeg.
Turn a video into something a coding agent can actually read.
Claude Code, Codex and friends accept images, not video. So when a bug report arrives as a screen recording, the video is dead weight — someone has to watch it and retype what happened. vidin watches it instead: it converts the recording into a small set of annotated keyframes plus a written timeline, and serves them to agents over MCP.

A 20-second recording in, six frames out: the refund panel, the 500 dialog, the retry toast, the recovery — each boxed and timestamped. (The clip is vidin's synthetic test fixture.)
npx @teunlao/vidin — all it asks of the machine
is ffmpeg; no sharp, no headless browser, no native image library.brew install ffmpeg # + yt-dlp, only if you'll pass URLs
Hook it into Claude Code:
claude mcp add vidin -- npx -y @teunlao/vidin mcp
Or in .mcp.json / ~/.codex/config.toml equivalents:
{
"mcpServers": {
"vidin": { "command": "npx", "args": ["-y", "@teunlao/vidin", "mcp"] }
}
}
Or straight from the shell:
npx @teunlao/vidin ~/Desktop/bug.mov # → ./.vidin/bug/
npm i -g @teunlao/vidin # or put `vidin` on PATH for good
vidin https://example.com/screencast.mp4 # downloaded with yt-dlp
vidin zoom bug.mov --from 00:41 --to 00:45 --fps 6
vidin probe bug.mov
out/
REPORT.md the entry point: timeline table, what changed where, what to open
manifest.json the same, machine readable
sheets/ the whole video as labelled 3x3 grids (~1.3k tokens each)
frames/ full-detail annotated frames

Each frame carries a red dashed box around the regions that changed since the previous kept frame, and a bottom bar with the frame number, the timestamp in the original video, the gap since the previous frame, why the frame was kept, and how much of the screen changed.
Four tools, shaped so an agent spends context in the right order:
| tool | what it does |
|---|---|
analyze_video | video → frames on disk; returns the report text and one contact sheet image |
get_frames | full-detail frames by number or time range, capped so a call can't flood the context |
zoom_clip | re-extract a narrow window at a higher frame rate — for the moment two frames don't explain |
probe_video | duration / resolution / fps / audio, cheap |
The intended loop: analyse → look at the sheet → read the timeline → open two or three frames → zoom in if the moment between them is still unclear. Opening everything up front would burn the context before knowing which second matters.
| profile | for |
|---|---|
bug-report | default — someone recorded a screen, narrated a bug, stopped |
dense | short clips where every twitch matters (24 fps analysis, up to 80 frames) |
walkthrough | long recordings; fewer frames, wider anchors |
cheap | smallest footprint, for when the context really is tight (12 frames at 1092px) |
Tuning without leaving the profile: --max-frames, --sensitivity (percent of
the screen that counts as an event, lower = more frames), --fps, --width,
--quality, --no-annotate, --no-sheets.
One screenshot per second turns three minutes into 180 frames of which ~90% are identical, because the person was reading, thinking or moving the mouse. Those duplicates don't cost much — they bury the handful of frames where something actually happened, and an agent has to look at all of them to find out which. Frame selection is a signal-to-noise problem wearing a cost problem's clothes.
vidin is event driven instead. It walks the video at 12 fps in downscaled RGB and keeps a frame only when something actually happened:
Two invariants hold whatever path a frame took:
ffmpeg ─raw RGB @12fps, 400px─ selector ──timestamps+regions── ffmpeg ──annotated WebP
one decode pass, event state machine drawbox/drawtext
streamed in plain TypeScript per frame
Decoding streams two frames at a time; the selector additionally keeps the
downscaled buffers of the frames it has kept so it can recompute their deltas
after pruning. That is bounded by the frame budget, not by video length: ~32 MB
at the defaults. All drawing is done by ffmpeg filters, which is why there is
no image library in package.json.
Development runs on Bun; the runtime code itself sticks to
node: APIs, which is what lets the published package run anywhere npx does.
git clone https://github.com/teunlao/vidin && cd vidin && bun install
bun test
The fixture is a synthetic screen recording with a scripted timeline — a panel,
an error dialog, a toast, a recovery, and two stretches of pointer-only motion.
The suite asserts that each staged event yields exactly one settled frame and
that pointer motion alone yields none. test/regressions.test.ts builds its
own clips and pins every failure a review has found, so a fixed bug stays
fixed.
whisper.cpp or mlx-whisper) → a transcript.md
aligned to the frame timeline.--sensitivity 0.2 or --profile dense catches them, at the cost of more
frames.FAQs
Turn a video (bug report, screen recording) into an agent-readable set of annotated keyframes. CLI + MCP server; the only native dependency is ffmpeg.
We found that @teunlao/vidin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.