OPEN-SOURCE
Jul 3, 2026Claude-Real-Video Lets Any LLM Process Live Video Input
A new open-source tool called claude-real-video pipes video frames to any LLM, bypassing the limitation that most models only accept static images or text.
Most LLMs accept images. None natively watch video. Claude-real-video closes that gap by extracting frames from a video stream and feeding them sequentially to a model, letting it reason across time without native video support baked in.
The project targets any LLM with a vision endpoint, not just Claude. The name reflects the original implementation, but the architecture is model-agnostic. Swap the backend and the frame-pumping pipeline stays the same.
For engineers, the practical implication is immediate: you no longer need to wait for a frontier lab to ship native video understanding before building products that require it. A surveillance feed, a screen recording, a drone capture — any of these becomes queryable by wrapping the stream in this tool and routing frames through your preferred vision model.
The approach is straightforward. Video is decomposed into individual frames at a configurable rate. Those frames are passed as image inputs to the model in sequence, and the model produces responses treating each frame in context. It is not true temporal understanding in the way a purpose-built video model would handle motion vectors or optical flow, but for a wide class of tasks — detecting state changes, answering questions about what is on screen, summarizing activity — it is sufficient.
Solo founders and small teams benefit most here. Building real video analysis into a product previously required either a specialized model or a heavyweight pipeline. This collapses that to a single open-source dependency.
The repository is available on GitHub. The team has kept the implementation lean, which means it is inspectable and forkable without significant overhead. Integrating it into an existing LLM-backed application should be straightforward for anyone already working with vision model APIs.
Source
news.ycombinator.com