For years, understanding video has largely meant turning time into tokens. A system samples frames at a fixed interval, combines them with an audio track or transcript, and hands the resulting sequence to a model. That works, but it treats every second as equally important—even when the answer lives in a fraction of one.
Google’s agentic video mode changes that loop. Gemini can dynamically search, scan, slow down, and revisit selected parts of a recording across visual frames, audio, and transcripts. Instead of absorbing an entire file at one resolution, it gathers the evidence needed for the question being asked.[1]
Attention becomes an action
This distinction sounds subtle, but it changes the economics and capability of video analysis. A static sampler must choose its frame rate before it knows where the interesting action occurs. Sample too slowly and it misses a brief event; sample too quickly and a long recording becomes unnecessarily expensive.
An active system can begin with a broad search, identify candidate moments, and inspect those windows at greater resolution. Google’s developer documentation contrasts that agentic mode with its static default, which extracts frames at one frame per second, and recommends selective processing for long-form or moment-specific questions.[2]
The model is no longer only answering a question about a video. It is deciding how to investigate the video first.
In Google’s published tests, the feature reduced token consumption by up to 88%, lowered analysis cost by up to 66%, and improved quality by up to 7%. Those are vendor-reported results, and production performance will depend on the task and source material. Still, they illustrate why selective attention can outperform indiscriminate context.
A pattern beyond video
The larger development is active perception. An AI system can treat perception as a tool call: decide what information is missing, inspect the relevant source, then update its plan. The same pattern applies to browsing a large document collection, examining a codebase, or directing sensors on a robot.
For engineers, this adds a new layer to evaluate. How does the agent decide what to inspect? Can its search strategy be audited? What happens when the first broad pass overlooks the critical moment? Accuracy now depends partly on the quality of a model’s information-gathering policy, not only its final reasoning.
Context windows still matter, but they are becoming one component in a larger system. The frontier is moving from models that can see a lot toward models that can decide where to look.
Public research helps explain the pressure behind this design. LongVideoBench contains thousands of human-annotated questions over interleaved video and subtitles, with recordings extending to an hour; its authors identify retrieval and reasoning over fine-grained details as the central difficulty.[3] More recent work on “think-with-grounding” similarly lets a model request question-relevant clips during reasoning instead of relying on one fixed visual context.[4]
References
- Google, “Introducing agentic video understanding with Gemini,” September 1, 2026.
- Google AI for Developers, “Video understanding: Agentic video understanding,” accessed September 2026.
- Wu et al., “LongVideoBench: A Benchmark for Long-context Interleaved Video-Language Understanding,” arXiv:2407.15754, 2024.
- Chen et al., “Think with Grounding: Curriculum Reinforced Reasoning with Video Grounding for Long Video Understanding,” arXiv:2602.18702, 2026.