{"id":116011,"date":"2026-09-06T01:24:20","date_gmt":"2026-09-06T01:24:20","guid":{"rendered":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/"},"modified":"2026-09-06T01:24:20","modified_gmt":"2026-09-06T01:24:20","slug":"google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88","status":"publish","type":"post","link":"https:\/\/youzum.net\/ja\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/","title":{"rendered":"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88%"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Video has been the most expensive modality to reason over. A Gemini model handed a 90-minute lecture has, until now, ingested the whole thing at a fixed one frame per second, whether the question was \u2018summarize this\u2019 or \u2018what time does the speaker switch to the pricing slide?\u2019 That single-pass design forces a bad trade: pay for the full timeline in context, or pre-chunk the video and risk dropping the detail that mattered.<\/p>\n<p class=\"wp-block-paragraph\">This week, Google <a href=\"https:\/\/blog.google\/innovation-and-ai\/models-and-research\/gemini-models\/introducing-agentic-video-in-gemini\/\">launched agentic video understanding<\/a> across its Flash models. Instead of ingesting the timeline, Gemini navigates it deciding what to watch, at what frame rate, and through which modality. Google reports up to 88% fewer tokens, up to 66% lower cost, and up to 7% higher accuracy on standard video benchmarks.<\/p>\n<p class=\"wp-block-paragraph\"><strong>Is it deployable?<\/strong> Yes, but only as a hosted API feature. There are no open weights and nothing to self-host. It ships through the <a href=\"https:\/\/ai.google.dev\/gemini-api\/docs\/video-understanding#agentic-video-understanding\">Gemini API<\/a> in Google AI Studio and the <a href=\"https:\/\/docs.cloud.google.com\/gemini-enterprise-agent-platform\/models\/capabilities\/video-understanding\">Gemini Enterprise Agent Platform<\/a>, works with both file uploads and public YouTube URLs, and bills at standard Gemini API token pricing with no additional feature fee.<\/p>\n<h2 class=\"wp-block-heading\"><strong>What actually changed<\/strong><\/h2>\n<p class=\"wp-block-paragraph\">Static processing, still the default on every Gemini model, extracts frames at 1 FPS in a single pass, processes audio at 1 Kbps single channel, and inserts timestamps every second. Agentic processing replaces that with a loop. The model pairs its own reasoning with native video tools to search, scan, and inspect target segments across frames, audio, and transcripts, loading only what the prompt requires. Developers could already assemble this by hand; the change is that Gemini runs the loop internally, which is where the development overhead disappears.<\/p>\n<p class=\"wp-block-paragraph\">Across Google\u2019s evaluations, Gemini 3.7 Flash with agentic understanding lands on the accuracy-to-cost Pareto frontier for video analysis among the models tested. The efficiency gains concentrate on long-form content, from 10-minute how-to guides to multi-hour recordings.<\/p>\n<div>\n<\/div>\n<p class=\"wp-block-paragraph\">\n<h2 class=\"wp-block-heading\"><strong>What the API returns<\/strong><\/h2>\n<\/p><p class=\"wp-block-paragraph\">Agentic processing adds two step types to the response <code>steps<\/code> array: a <code>processing_call<\/code> when the model requests a segment or transcript, and a matching <code>processing_result<\/code> when that load completes. They interleave with <code>thought<\/code> steps and precede <code>model_output<\/code>, so they can drive a live progress trace in your UI. Their presence is also how you verify agentic mode actually ran.<\/p>\n<p class=\"wp-block-paragraph\">Token accounting splits accordingly. Navigation reasoning bills as thought tokens (<code>total_thought_tokens<\/code>); frames, audio, and transcripts loaded on demand bill as tool-use tokens (<code>total_tool_use_tokens<\/code>).<\/p>\n<p class=\"wp-block-paragraph\">Enabling it is one field on the video part:<\/p>\n<div class=\"dm-code-snippet dark dm-normal-version default no-background-mobile\">\n<div class=\"control-language\">\n<div class=\"dm-buttons\">\n<div class=\"dm-buttons-left\">\n<div class=\"dm-button-snippet red-button\"><\/div>\n<div class=\"dm-button-snippet orange-button\"><\/div>\n<div class=\"dm-button-snippet green-button\"><\/div>\n<\/div>\n<div class=\"dm-buttons-right\"><a><span class=\"dm-copy-text\">Copy Code<\/span><span class=\"dm-copy-confirmed\">Copied<\/span><span class=\"dm-error-message\">Use a different Browser<\/span><\/a><\/div>\n<\/div>\n<pre class=\"no-line-numbers\"><code class=\"no-wrap language-php\">interaction = client.interactions.create(\n    model=\"gemini-3.7-flash\",\n    input=[\n        {\n            \"type\": \"video\",\n            \"uri\": \"https:\/\/youtu.be\/7Z5Vy9JBANs\",\n            \"processing\": \"agentic\"\n        },\n        {\n            \"type\": \"text\",\n            \"text\": \"What are the 3 most important announcements in this keynote?\",\n        },\n    ],\n)<\/code><\/pre>\n<\/div>\n<\/div>\n<p class=\"wp-block-paragraph\">You can also mix modes per video inside a single request, agentic on the long lecture, static on the short clip.<\/p>\n<h2 class=\"wp-block-heading\"><strong>Key Takeaways<\/strong><\/h2>\n<ul class=\"wp-block-list\">\n<li>Agentic mode lets Gemini navigate a video timeline instead of ingesting it at a fixed 1 FPS.<\/li>\n<li>Google reports up to 88% fewer tokens, 66% lower cost, and 7% higher accuracy on video benchmarks.<\/li>\n<li>Supported on Gemini 3.8, 3.7, 3.6 Flash and 3.5 Flash-Lite; enabled by one <code>processing<\/code> field.<\/li>\n<li>Static remains better for clips under five minutes and for frame-by-frame precision work.<\/li>\n<li>Standard API pricing applies, but navigation reasoning is billed as thought tokens.<\/li>\n<\/ul>\n<p class=\"wp-block-paragraph\">\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n<\/p><p class=\"wp-block-paragraph\">\n<\/p><p class=\"wp-block-paragraph\">Check out the\u00a0<a href=\"https:\/\/blog.google\/innovation-and-ai\/models-and-research\/gemini-models\/introducing-agentic-video-in-gemini\/\">Google blog<\/a>, <a href=\"https:\/\/ai.google.dev\/gemini-api\/docs\/video-understanding\">Gemini API video understanding docs<\/a>, <a href=\"https:\/\/aistudio.google.com\/learn\/agentic-video-understanding-with-gemini\">Developer guide in AI Studio<\/a> and <a href=\"https:\/\/blog.google\/innovation-and-ai\/technology\/developers-tools\/agentic-vision-gemini-3-flash\/\">Agentic vision announcement<\/a>. Also,\u00a0feel free to follow us on\u00a0<strong><a href=\"https:\/\/x.com\/intent\/follow?screen_name=marktechpost\" target=\"_blank\" rel=\"noopener\"><mark>Twitter<\/mark><\/a><\/strong>\u00a0and don\u2019t forget to join our\u00a0<strong><a href=\"https:\/\/www.reddit.com\/r\/machinelearningnews\/\" target=\"_blank\" rel=\"noopener\">150k+ML SubReddit<\/a><\/strong>\u00a0and Subscribe to\u00a0<strong><a href=\"https:\/\/magic.beehiiv.com\/v1\/f5e63dd4-5653-4f09-83e2-321a8b1ba526?email=%7B%7Bemail%7D%7D\" target=\"_blank\" rel=\"noopener\">our Newsletter<\/a><\/strong>. Wait! are you on telegram?\u00a0<strong><a href=\"https:\/\/t.me\/machinelearningresearchnews\" target=\"_blank\" rel=\"noopener\">now you can join us on telegram as well.<\/a><\/strong><\/p>\n<p class=\"wp-block-paragraph\">Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0<strong><a href=\"https:\/\/forms.gle\/wbash1wF6efRj8G58\" target=\"_blank\" rel=\"noopener\"><mark>Connect with us<\/mark><\/a><\/strong><\/p>\n<p>The post <a href=\"https:\/\/www.marktechpost.com\/2026\/09\/04\/google-agentic-video-understanding-gemini-flash-models\/\">Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88%<\/a> appeared first on <a href=\"https:\/\/www.marktechpost.com\/\">MarkTechPost<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>Video has been the most expensive modality to reason over. A Gemini model handed a 90-minute lecture has, until now, ingested the whole thing at a fixed one frame per second, whether the question was \u2018summarize this\u2019 or \u2018what time does the speaker switch to the pricing slide?\u2019 That single-pass design forces a bad trade: pay for the full timeline in context, or pre-chunk the video and risk dropping the detail that mattered. This week, Google launched agentic video understanding across its Flash models. Instead of ingesting the timeline, Gemini navigates it deciding what to watch, at what frame rate, and through which modality. Google reports up to 88% fewer tokens, up to 66% lower cost, and up to 7% higher accuracy on standard video benchmarks. Is it deployable? Yes, but only as a hosted API feature. There are no open weights and nothing to self-host. It ships through the Gemini API in Google AI Studio and the Gemini Enterprise Agent Platform, works with both file uploads and public YouTube URLs, and bills at standard Gemini API token pricing with no additional feature fee. What actually changed Static processing, still the default on every Gemini model, extracts frames at 1 FPS in a single pass, processes audio at 1 Kbps single channel, and inserts timestamps every second. Agentic processing replaces that with a loop. The model pairs its own reasoning with native video tools to search, scan, and inspect target segments across frames, audio, and transcripts, loading only what the prompt requires. Developers could already assemble this by hand; the change is that Gemini runs the loop internally, which is where the development overhead disappears. Across Google\u2019s evaluations, Gemini 3.7 Flash with agentic understanding lands on the accuracy-to-cost Pareto frontier for video analysis among the models tested. The efficiency gains concentrate on long-form content, from 10-minute how-to guides to multi-hour recordings. What the API returns Agentic processing adds two step types to the response steps array: a processing_call when the model requests a segment or transcript, and a matching processing_result when that load completes. They interleave with thought steps and precede model_output, so they can drive a live progress trace in your UI. Their presence is also how you verify agentic mode actually ran. Token accounting splits accordingly. Navigation reasoning bills as thought tokens (total_thought_tokens); frames, audio, and transcripts loaded on demand bill as tool-use tokens (total_tool_use_tokens). Enabling it is one field on the video part: Copy CodeCopiedUse a different Browser interaction = client.interactions.create( model=&#8221;gemini-3.7-flash&#8221;, input=[ { &#8220;type&#8221;: &#8220;video&#8221;, &#8220;uri&#8221;: &#8220;https:\/\/youtu.be\/7Z5Vy9JBANs&#8221;, &#8220;processing&#8221;: &#8220;agentic&#8221; }, { &#8220;type&#8221;: &#8220;text&#8221;, &#8220;text&#8221;: &#8220;What are the 3 most important announcements in this keynote?&#8221;, }, ], ) You can also mix modes per video inside a single request, agentic on the long lecture, static on the short clip. Key Takeaways Agentic mode lets Gemini navigate a video timeline instead of ingesting it at a fixed 1 FPS. Google reports up to 88% fewer tokens, 66% lower cost, and 7% higher accuracy on video benchmarks. Supported on Gemini 3.8, 3.7, 3.6 Flash and 3.5 Flash-Lite; enabled by one processing field. Static remains better for clips under five minutes and for frame-by-frame precision work. Standard API pricing applies, but navigation reasoning is billed as thought tokens. Check out the\u00a0Google blog, Gemini API video understanding docs, Developer guide in AI Studio and Agentic vision announcement. Also,\u00a0feel free to follow us on\u00a0Twitter\u00a0and don\u2019t forget to join our\u00a0150k+ML SubReddit\u00a0and Subscribe to\u00a0our Newsletter. Wait! are you on telegram?\u00a0now you can join us on telegram as well. Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?\u00a0Connect with us The post Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% appeared first on MarkTechPost.<\/p>","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"pmpro_default_level":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_pvb_checkbox_block_on_post":false,"footnotes":""},"categories":[52,5,7,1],"tags":[],"class_list":["post-116011","post","type-post","status-publish","format-standard","hentry","category-ai-club","category-committee","category-news","category-uncategorized","pmpro-has-access"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% - YouZum<\/title>\n<meta name=\"description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/youzum.net\/ja\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% - YouZum\" \/>\n<meta property=\"og:description\" content=\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\" \/>\n<meta property=\"og:url\" content=\"https:\/\/youzum.net\/ja\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\" \/>\n<meta property=\"og:site_name\" content=\"YouZum\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DroneAssociationTH\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-06T01:24:20+00:00\" \/>\n<meta name=\"author\" content=\"admin NU\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin NU\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\"},\"author\":{\"name\":\"admin NU\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\"},\"headline\":\"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88%\",\"datePublished\":\"2026-09-06T01:24:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\"},\"wordCount\":604,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"articleSection\":[\"AI\",\"Committee\",\"News\",\"Uncategorized\"],\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\",\"url\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\",\"name\":\"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% - YouZum\",\"isPartOf\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#website\"},\"datePublished\":\"2026-09-06T01:24:20+00:00\",\"description\":\"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19\",\"breadcrumb\":{\"@id\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/youzum.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88%\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yousum.gpucore.co\/#website\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"name\":\"YouSum\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yousum.gpucore.co\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/yousum.gpucore.co\/#organization\",\"name\":\"Drone Association Thailand\",\"url\":\"https:\/\/yousum.gpucore.co\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png\",\"width\":300,\"height\":300,\"caption\":\"Drone Association Thailand\"},\"image\":{\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/DroneAssociationTH\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c\",\"name\":\"admin NU\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"contentUrl\":\"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png\",\"caption\":\"admin NU\"},\"url\":\"https:\/\/youzum.net\/ja\/members\/adminnu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% - YouZum","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/youzum.net\/ja\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/","og_locale":"ja_JP","og_type":"article","og_title":"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% - YouZum","og_description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","og_url":"https:\/\/youzum.net\/ja\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/","og_site_name":"YouZum","article_publisher":"https:\/\/www.facebook.com\/DroneAssociationTH\/","article_published_time":"2026-09-06T01:24:20+00:00","author":"admin NU","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"admin NU","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"3\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#article","isPartOf":{"@id":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/"},"author":{"name":"admin NU","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c"},"headline":"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88%","datePublished":"2026-09-06T01:24:20+00:00","mainEntityOfPage":{"@id":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/"},"wordCount":604,"commentCount":0,"publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"articleSection":["AI","Committee","News","Uncategorized"],"inLanguage":"ja","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/","url":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/","name":"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88% - YouZum","isPartOf":{"@id":"https:\/\/yousum.gpucore.co\/#website"},"datePublished":"2026-09-06T01:24:20+00:00","description":"\u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e42\u0e14\u0e23\u0e19","breadcrumb":{"@id":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/youzum.net\/google-launches-agentic-video-understanding-for-gemini-flash-models-cutting-video-tokens-by-up-to-88\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/youzum.net\/"},{"@type":"ListItem","position":2,"name":"Google Launches Agentic Video Understanding for Gemini Flash Models, Cutting Video Tokens by Up to 88%"}]},{"@type":"WebSite","@id":"https:\/\/yousum.gpucore.co\/#website","url":"https:\/\/yousum.gpucore.co\/","name":"YouSum","description":"","publisher":{"@id":"https:\/\/yousum.gpucore.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yousum.gpucore.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/yousum.gpucore.co\/#organization","name":"Drone Association Thailand","url":"https:\/\/yousum.gpucore.co\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/2024\/11\/tranparent-logo.png","width":300,"height":300,"caption":"Drone Association Thailand"},"image":{"@id":"https:\/\/yousum.gpucore.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DroneAssociationTH\/"]},{"@type":"Person","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/97fa48242daf3908e4d9a5f26f4a059c","name":"admin NU","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/yousum.gpucore.co\/#\/schema\/person\/image\/","url":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","contentUrl":"https:\/\/youzum.net\/wp-content\/uploads\/avatars\/2\/1746849356-bpfull.png","caption":"admin NU"},"url":"https:\/\/youzum.net\/ja\/members\/adminnu\/"}]}},"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"admin NU","author_link":"https:\/\/youzum.net\/ja\/members\/adminnu\/"},"rttpg_comment":0,"rttpg_category":"<a href=\"https:\/\/youzum.net\/ja\/category\/ai-club\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/youzum.net\/ja\/category\/committee\/\" rel=\"category tag\">Committee<\/a> <a href=\"https:\/\/youzum.net\/ja\/category\/news\/\" rel=\"category tag\">News<\/a> <a href=\"https:\/\/youzum.net\/ja\/category\/uncategorized\/\" rel=\"category tag\">Uncategorized<\/a>","rttpg_excerpt":"Video has been the most expensive modality to reason over. A Gemini model handed a 90-minute lecture has, until now, ingested the whole thing at a fixed one frame per second, whether the question was \u2018summarize this\u2019 or \u2018what time does the speaker switch to the pricing slide?\u2019 That single-pass design forces a bad trade:&hellip;","_links":{"self":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/posts\/116011","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/comments?post=116011"}],"version-history":[{"count":0,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/posts\/116011\/revisions"}],"wp:attachment":[{"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/media?parent=116011"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/categories?post=116011"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/youzum.net\/ja\/wp-json\/wp\/v2\/tags?post=116011"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}