mrkeyoor.com_
Sat 08 Aug 21:02 UTC
AI Toolsevaluationupdated 08 Aug 2026

claude-video-vision

Claude Code Video Vision is a Claude Code plugin and MCP server that turns videos into timestamped frames, transcripts, and structural clues Claude can inspect. It solves a practical limitation of coding-agent sessions: Claude can reason about selected visual and audio evidence without the user manually exporting screenshots or transcribing speech.

Verdict

Install it if video evidence regularly appears in your Claude Code work, especially bug recordings and technical walkthroughs. The analyze-first workflow is smarter than blindly flooding context with frames, and the local audio option is valuable. Treat it as an early but useful specialist plugin, with extra caution on Windows and with sensitive visual material.

Setup4/5Simple plugin install, but ffmpeg and an audio backend are required
Docs4/5Clear workflow and privacy docs, with some version information drift
Community3/51.1k stars and useful reports, but several PRs remain pending
Maturity3/5Security work and tests help, but releases and Windows support lag

Who it’s for

  • Claude Code users reviewing screen recordings, demos, tutorials, or bug videos.
  • Developers who need timestamped visual evidence and transcripts inside an existing agent session.
  • Privacy-conscious users who want local Whisper transcription and control over frame extraction.
  • Researchers and creators who want to inspect specific moments rather than upload an entire video to a general chat interface.

Who it’s NOT for

  • People who do not use Claude Code: the plugin, command, and automatic video skill are designed around Claude Code's plugin system.
  • Anyone needing fully local video interpretation: local Whisper keeps audio transcription offline, but extracted frames are still passed to Claude for visual reasoning.
  • Windows users expecting a friction-free install: open reports describe npx MCP connection failure and duplicate server processes after reconnects.
  • Production video indexing or search teams: the tool is a young single-session assistant layer, not a multi-user video database, hosted API, or evaluation-backed analysis service.

Setup reality

Plugin installation is only two Claude Code commands, and the MCP package arrives through npx, but the useful path still depends on system software. Node.js 20 and ffmpeg are mandatory, YouTube input needs yt-dlp, and audio needs either a Gemini or OpenAI key or a working local Whisper installation plus a model download. The setup command checks and guides these pieces, which is better than leaving errors unexplained. macOS with Apple Silicon and local whisper.cpp is the README's stated tested configuration; Windows has open connection and process-lifecycle reports, so budget troubleshooting time there.

It gives Claude evidence, not a magic pair of eyes

Claude Code Video Vision is refreshingly precise about what it does. It is a perception layer. ffmpeg extracts frames and audio, a selected backend turns speech and other sounds into timestamped text, and Claude receives those materials inside the coding session. Claude supplies the interpretation. The plugin is not training a video model, running a hidden video-understanding service, or claiming that a few sampled frames perfectly represent every second.

That design fits practical development work. A user can point Claude at a screen recording and ask where a UI breaks, inspect the first second of an animation at full frame rate, or summarize a long tutorial with sparse visual sampling and a transcript. YouTube URLs are accepted through yt-dlp. The server prefers manual English subtitles, then automatic captions, then the configured transcription backend when captions are absent or insufficient. It labels transcript provenance so Claude has a chance to treat human subtitles as stronger evidence than automatic speech recognition.

The analyze-first workflow is the best idea here

Naive video tools dump evenly spaced screenshots into a model and hope important moments happen near the sample points. This plugin gives Claude six MCP tools and instructions for using them selectively. It first reads video metadata. For anything longer than 30 seconds, the skill requires structural analysis before frame extraction. ffmpeg filters can identify scene changes, black or frozen intervals, silence, motion, blur, exposure, and loudness. The transcript then provides verbal landmarks.

Claude uses those clues to choose frame rate, resolution, and time ranges. A static lecture can be sampled lightly, while a short transition or on-screen error gets a narrow high-frame-rate pass. The video_detail tool supports another inspection around a specific moment. Optional session indexing caches extracted frames by video hash and resolution, avoiding repeated work during follow-up questions. Session and download retention default to seven days and can be cleared through configuration.

This approach controls context use as well as processing time. The default maximum is 100 frames, long videos can return an evenly spaced view sample, and images can be JPEG, PNG, or WebP. PNG is a sensible choice for screen recordings where text and sharp interface edges suffer under lossy compression. None of these controls guarantee a correct answer, but they expose the sampling decision instead of hiding it.

Three audio paths, three different compromises

The local backend supports whisper.cpp or Python's openai-whisper. It costs no API usage and keeps audio transcription on the machine, although the first run downloads model weights and larger models need more memory and time. Gemini receives extracted audio and can return speech plus non-speech events. OpenAI's Whisper API is the familiar paid hosted alternative. All three align results to the original video timeline, including when only a cropped window is processed.

The privacy documentation is better than average. The maintainer says there is no telemetry or account, lists every local directory used, and explains which backend receives audio. Temporary frames and audio are deleted after a call, while optional indexed sessions persist according to configuration. There is still an important boundary: the visual frames are passed to Claude inside the Claude Code session. Selecting local Whisper does not create a fully offline video analyst. Users handling confidential recordings must evaluate Claude's data path as well as the transcription backend.

Setup is short until a dependency disagrees

The intended install uses Claude Code's marketplace and plugin commands. On first use, npx retrieves the published MCP server, so there is no repository build step. The configuration command walks through backend choice, Whisper settings, frame defaults, and dependency checks. Node 20 and ffmpeg are required; yt-dlp is optional unless YouTube matters. Local transcription introduces a native executable or Python package and a model download. Cloud transcription introduces an API key and provider terms.

For macOS users, especially Apple Silicon with whisper.cpp, that is a reasonable setup. The README only claims that specific combination as tested. Windows deserves caution. An open pull request reports that the npx invocation can fail to connect and proposes a global binary workaround. Another open report describes duplicate MCP server instances after reconnect, interfering with other Claude Code agent dispatches. These are specific integration problems, not vague fear about a young project, and both affect the experience beyond video processing itself.

Healthy code, untidy release signals

The codebase includes unit tests for extraction, backends, sessions, timestamps, and path handling. The changelog records fixes for command injection in model downloads, checksum verification for Whisper weights, ffmpeg argument validation, Windows drive paths, timestamp alignment, and silence hallucinations. A security policy directs private vulnerability reports and commits to supporting the latest 1.x line. Recent repository activity and merged issue fixes show maintenance rather than abandonment.

The packaging story is less tidy. GitHub's latest-release endpoint returns no release, even though the package manifest says 1.3.2, the changelog currently stops at 1.2.1, and the README's status section still calls 1.0.0 the initial release. Open dependency updates and documentation fixes also remain queued. None of this makes the tool unusable, but it weakens confidence in knowing exactly what a fresh @latest install contains.

Who should actually install it

This plugin is strongest when video is supporting evidence in a development conversation. Bug captures, product demos, UI timing, tutorial summaries, and short visual checks suit the interactive drill-down model. The ability to keep transcription local and choose precisely which frames Claude sees is a real advantage over manually uploading a whole file.

It is not a video archive, semantic search engine, or production analysis API. It has no multi-user index, quality benchmark, or promise that adaptive sampling catches every brief event. If those are your requirements, choose a dedicated video platform. If you already live in Claude Code and often type “look at this recording,” this focused plugin removes enough manual work to earn a place in the toolkit.

Alternatives

ProjectWhat it isPick it when
Gemini CLIGoogle's terminal agent, suited to users who prefer Gemini's native multimodal ecosystem over a Claude Code plugin.pick this instead when you want a general terminal agent from the model provider and do not need Claude-specific commands or MCP tools.
WhisperXA speech-recognition pipeline with word-level timestamps and speaker diarization.pick this instead when accurate transcription, alignment, and speaker labels matter more than visual frame understanding.
TwelveLabsA hosted video-understanding platform built for indexing, search, and structured analysis at application scale.pick this instead when you need a managed video index or production API rather than an interactive Claude Code workflow.

What people are saying

  1. [github-trending] jordanrendric/claude-video-vision

Sources

  1. Claude Code Video Vision README
  2. Video perception skill workflow
  3. Privacy policy
  4. Project changelog
  5. MCP package manifest
  6. Open duplicate MCP process report
  7. Open Windows connection fix