Tutorial · search-console · Published 2026-08-16 · 4 min read
Using the Search Console video indexing report
Read the Search Console video index report: statuses, why videos stay unindexed, VideoObject tips and the revalidation path after a fix.
What the report shows
The video index report in Search Console answers one question: on how many of your indexed pages did Google manage to index a video? It sits under the indexing section, and it only counts pages Google has already indexed. A page that is not indexed, blocked by robots.txt, or treated as duplicate will not appear here at all, so the report is downstream of the pages index report.
Each row is one page with one outcome. The two statuses are straightforward:
- Video indexed: Google found a video on the page and indexed one of them. Google only indexes one video per page.
- No video indexed: Google detected at least one video but could not index any. A per-page error explains why.
The report reflects the last crawl, not a live inventory. If you fix a page today, refresh the report after Google recrawls, and the row may change slowly. That lag is normal, and the URL inspection tool shows the video status of a single page with the newest crawl data.
Why videos stay unindexed
Most failures fall into three buckets, and the report states the exact reason.
| Error | What it means | Common fix |
|---|---|---|
| No prominent videos on page | Google could not pick a main video, often because the player loads only on a click | Give the page a real, visible player, not a click-to-play poster |
| Invalid or missing thumbnail | Required thumbnail could not be read, is too small, transparent, or blocked | Serve a public, non-blocked image, ideally 640x360 or larger |
| Unsupported video format | The file itself cannot be processed or the URL is unreachable | Use standard web formats (MP4/H.264) with a reachable video URL |
Prominence deserves the most attention because it is the most common silent failure. Google needs the video rendered at its real size and position without a click, not hidden by CSS, not below a lazy-load boundary, and not inside a carousel that only activates via JavaScript. A click-to-load thumbnail, a JS-rendered player, or an overflow: hidden wrapper each look fine to a visitor and invisible to the indexer.
Add structured data and a video sitemap
The report is triage; the fix is metadata. Mark the video with VideoObject structured data, which the structured data guide covers in general. The required VideoObject properties are name, thumbnailUrl, and uploadDate, and the thumbnail matters most because Google reuses it as the result image.
The golden rule for videos is consistency: the same title, thumbnail URL, and video URL must appear in every source that describes the video, including the VideoObject markup, a video sitemap (<video:thumbnail_loc>), and the HTML (<video poster="...">). Google flags identical videos described differently as errors, so a thumbnail URL inside structured data that differs from the poster attribute is a free, self-inflicted failure.
Fix and revalidate
- Open the video index report and filter to "No video indexed".
- Read the per-page error. Most rows have one and it names the cause.
- Fix the cause on the real page. This usually means making the player prominent (no click-to-load), serving a valid thumbnail, or confirming the format is an indexable MP4.
- Use URL inspection to test the fix, matching the video indexing status to the report row.
- Click Validate fix in the report. Expect the revalidation period to take up to about two weeks, and do not expect an instant green.
A video that is simply not prominent is still worth fixing, because an indexed video can win rich results and a clean, descriptive result. The reward for indexing a video is a better result, not a guarantee of a video rich result, and the prerequisite is always the same: Google has to be able to see, size, and fetch the video without interaction.
Prevention
Publish with the video player visible from the start, give every video a valid thumbnail (even expecting Google to generate one from the file when you cannot), and keep the title and URLs identical across structured data, sitemap, and HTML. Those three habits prevent the large majority of video index failures before they ever appear in the report.