惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
博客园 - 叶小钗
爱范儿
爱范儿
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
T
Tailwind CSS Blog
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
博客园 - 【当耐特】
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell

Gemini Models

Introducing Gemini 3.8 Live and 3.8 Live Extended Thinking Proactive cyber defense for governments and enterprises Introducing Gemini 3.8 Flash and 3.8 Flash Cyber The latest AI news we announced in August 2026 Gemini Omni 1.1 Flash lets you build with more control Intelligent transcription with Gemini 3.5 Transcribe What does “full-stack” AI actually mean? Introducing Gemini 3.7 Flash Omni experts share what excites them most about the model. See what 5 builders are making with Gemini Omni The latest AI news we announced in July 2026 Inside our 353,000-person vibe coding course Simplify your morning with this vibe-coded schedule app. Introducing Gemini Robotics ER 2 How Gemini Flash agents are helping a Michigan dairy farmer Introducing Gemini 3.6 Flash, 3.5 Flash-Lite, and 3.5 Flash Cyber The latest AI news we announced in June 2026 Start building with Nano Banana 2 Lite and Gemini Omni Flash Introducing computer use in Gemini 3.5 Flash Fluid, natural voice translation with Gemini 3.5 Live Translate The latest AI news we announced in May 2026 How we used Gemini to build Google I/O 2026 9 demos of Gemini Omni and Gemini 3.5 in action Catch up on 12 major I/O 2026 moments I/O 2026 I/O 2026: Welcome to the agentic Gemini era Gemini 3.5: frontier intelligence with action Introducing Gemini Omni The latest AI news we announced in April 2026 Join the new AI Agents Vibe Coding Course from Google and Kaggle
Introducing agentic video understanding with Gemini
Rohan Doshi · 2026-09-02 · via Gemini Models

Our new agentic feature for video analysis cuts token consumption by up to 88%, reduces costs by up to 66%, and boosts quality by up to 7%.


Mario Lučić

Research Director, Google DeepMind


Text "Agentic video understanding" next to the Gemini logo, all on a dark blue background

Your browser does not support the audio element.

Listen to article

[[duration]] minutes

This content is generated by Google AI. Generative AI is experimental

Today, we’re launching agentic video understanding across our latest models: Gemini 3.7 Flash, 3.6 Flash and 3.5 Flash-Lite. This new capability improves accuracy while dramatically reducing token usage and costs for video analysis. Similar to agentic vision, which combines code execution with Gemini models’ native image understanding, agentic video understanding uses Gemini’s native video tools to improve performance and unlock new capabilities for video processing like sub-second moment retrieval, more accurate anomaly detection, precise counting and more.

The feature is available today for video uploads and YouTube videos via the Gemini API in Google AI Studio and the Gemini Enterprise Agent Platform.

Benchmarks

Unlike current ‘static’ processing, where the model ingests the video at a fixed frames-per-second rate (default 1 FPS, adjustable via API), agentic video understanding pairs the model’s core reasoning with native video tools to dynamically search, scan, and inspect target video segments across visual frames, audio, and transcripts. Across standard video analysis benchmarks, Gemini models with agentic video understanding reduce analysis costs by up to 66% and token consumption by up to 88%, while improving accuracy by up to 7%.

These efficiency gains are especially pronounced on long-form video (from 10-minute how-to guides to 90-minute lectures and multi-hour recordings), where static processing forces developers to choose between high token costs or techniques that drop critical details.

Activating agentic video understanding drops token consumption by up to 88% and boosts accuracy by up to 7% with Gemini 3.7 Flash.

Graphs analyzing token efficiency and accuracy gains

While these gains span all three supported models, Gemini 3.7 Flash with agentic understanding offers the best possible quality overall and the best combination of quality and cost efficiency, putting it at the accuracy-to-cost pareto frontier among tested models for video understanding.

Using agentic video understanding places Gemini 3.7 Flash at the accuracy-to-cost pareto frontier for video analysis.

Graph with "Cost per query" on the x-axis and "Accuracy" on the y-axis

How it works

Instead of static processing where the model ingests media streams at a fixed frame rate, agentic video understanding enables Gemini to take an active, goal-directed role in determining what to watch, at what speed, and through which modality (frames, audio, or transcript), fetching only the moments and signals needed. While developers could previously do this manually, with agentic video understanding, Gemini can accomplish it through an agentic loop, invoking an internal tool to load the relevant part of the video file, significantly reducing development overheads.

Diagram of the process from Query to Output

Capabilities and use cases

Agentic video understanding transforms how developers can process long-form video content across a variety of demanding applications.

  • Sub-second moment retrieval: Pinpoint split-second state changes and tight cut boundaries that are easily missed at 1 FPS, making precise automated video editing possible.
  • Long-form needle-in-a-haystack search: Answer complex queries across multi-hour videos without consuming millions of tokens.
  • Anomaly detection: Resample interesting time windows at higher FPS to inspect rapid motion and subtle visual artifacts.
  • Counting action & object: Accurately track repeated physical movements and distinct objects over time.

Real-world results

Many of our early access partners saw strong performance while testing with agentic video understanding. Here’s what they have to say:

Quote from Ponder

Quote from Revyl

Quote from Mosaic

Quote from Resemble.AI

Getting started

Agentic video understanding is available via the Gemini API in Google AI Studio and Gemini Enterprise Agent Platform, launching across Gemini 3.7 Flash, 3.6 Flash, and 3.5 Flash-Lite. It uses standard Gemini API token pricing with no additional feature fee.

To enable it, simply set processing to "agentic" in the API configuration. Read our developer guide to get more insights into the feature and how to get started.

from google import genai

client = genai.Client()

interaction = client.interactions.create(
    model="gemini-3.7-flash",
    input=[
        {
            "type": "video",
            "uri": "https://youtu.be/7Z5Vy9JBANs",
            "processing": "agentic"
        },
        {
            "type": "text",
            "text": "What are the 3 most important announcements in this keynote?",
        },
    ],
)

print(interaction.output_text)

We are also bringing the efficiency and quality improvements of agentic video understanding to billions of users across Google products. The feature will roll out to all users in the Gemini app across Flash and Flash-Lite models soon. And in the coming months, agentic video understanding will also power YouTube's ‘Ask YouTube’ feature on the video watch page, leveraging Gemini to deliver higher-quality answers grounded in the visuals.

Acknowledgement for their contribution to this work: Sergi Caelles, Filip Pavetić, Ahmet Iscen, Suhas Yogin, and the Agentic Vision team.

Get the latest news from Google in your inbox

Sign up for our newsletters with product updates, event information, special offers, and more.

Your information will be used in accordance with Google's privacy policy. You may opt out at any time.