Video SEO: The Definitive Guide to Ranking Your Videos in Google
Table of Contents
Video now appears in Google results across multiple formats: the Video tab, the main organic carousel, AI Overviews, and the Short Videos carousel on mobile. Getting any of those placements requires deliberate optimisation, not just uploading content and hoping for the best.
This guide covers the full picture: how Google actually indexes video, the technical signals that determine whether your content ranks, keyword research for video intent, schema markup implementation, and how to apply this specifically in the UK and Irish market. Whether you produce video in-house or work with a production partner, the principles here apply regardless of platform.
What Is Video SEO? (And Why It Goes Beyond YouTube)
Video SEO is the process of optimising video content so that it appears in search engine results. That sounds straightforward, but the mechanics behind it are more involved than most guides acknowledge.
Google and YouTube are not the same index. YouTube runs its own internal algorithm, shaped primarily by watch time, click-through rate, engagement signals (likes, comments, saves), and subscriber behaviour. Google’s main index treats video as one content format among many, and its ranking decisions are governed by different signals: the presence of structured data, hosting quality, page load speed, schema validity, and whether the content genuinely satisfies the search intent for that query.
A video can rank in YouTube search while being completely invisible in Google, and vice versa. Most businesses focus exclusively on YouTube optimisation and miss the Google opportunity entirely.
Beyond YouTube and Google, there is now a third context worth understanding: short-form video platforms. TikTok clips and YouTube Shorts are appearing in Google’s mobile Short Videos carousel. This is a relatively recent development and one that most competitor guides have not yet addressed in any depth.
For businesses in Northern Ireland, Ireland, and the wider UK market, video SEO matters because it is one of the few content formats where a well-optimised page from a regional agency can compete directly with much larger national brands in organic search.
How Google Indexes Video Content
Before you can optimise, you need to understand the mechanism.
Google’s crawlers identify video content on a page by detecting an embedded video player, a VideoObject schema markup block, or both. When it finds video, it attempts to extract key metadata: the title, description, upload date, thumbnail URL, and duration. If that metadata is not provided via structured data, Google will try to infer it from surrounding page content, and it often gets it wrong.
The Video Indexing Report in Google Search Console
Google Search Console includes a dedicated video indexing report that most site owners have never opened. It shows which of your pages contain video that Google has successfully indexed, and which pages have video that Google found but could not index, along with the specific reason why.
Common reasons for failed video indexing include: no video found (Google detected an embed but could not crawl it), video not accessible (behind a login or paywalled), no thumbnail URL provided, and no video duration provided. Each of these is fixable with correctly structured data.
Check this report before doing anything else. It will tell you whether your existing video content is actually reaching Google’s video index.
Where Indexed Videos Can Appear
Once indexed, a video can surface in several Google placements:
- The Video tab in Google Search (the dedicated video results page)
- The organic video carousel on the main SERP is typically triggered by how-to, tutorial, review, or instructional queries
- Google AI Overviews, where video content is increasingly being cited
- The Short Videos carousel on mobile, for content under 60 seconds from TikTok, YouTube Shorts, or Instagram Reels
- Google Images (for thumbnail imagery)
Each placement has slightly different requirements. The Video tab requires the VideoObject schema. The Short Videos carousel requires content that is genuinely short-form and discoverable via the platform’s own signals.
Keyword Research for Video SEO
Not every search query triggers video results. Understanding which queries have “video intent” is the first step in a workable video keyword strategy.
Finding Queries With Video Intent
Google tends to surface video results for queries in specific categories: how-to and tutorial content, product demonstrations and reviews, fitness and exercise instruction, recipes, DIY home improvement, and entertainment content. If you run a search for your target keyword and the main results page does not include a video carousel, that keyword likely has little video intent.
Tools like Ahrefs and Semrush both have filters that show whether a keyword’s SERP includes video results. Use these to segment your keyword list by video intent before investing production time.
YouTube Keyword Research vs Google Keyword Research
These are different exercises. YouTube’s internal search is tuned to its own platform, and the most-searched terms on YouTube do not always match Google’s video carousel triggers.
For YouTube, look at autocomplete suggestions, the YouTube Studio “Traffic Source” report (which shows exactly what people searched before finding your videos), and competitor channel content. In Google Search Console, use the Search Appearance filter (set to “Video results”) to see which queries are already sending people to your video content.
Long-Tail Queries and Question-Based Keywords
Long-tail video keywords tend to be easier to rank for and more commercially specific. Queries like “how to improve Core Web Vitals for video pages” or “video hosting for small businesses UK” have lower competition than broad head terms but much clearer intent.
Question-based keywords also convert well into video content because they map directly to a specific problem someone is trying to solve. The People Also Ask box for your primary keyword will automatically surface these.
Technical Video SEO: The Must-Haves for Google Ranking
This is where most guides get thin. Technical video SEO is not complicated, but the implementation details matter.
VideoObject Schema Markup (JSON-LD)
VideoObject schema is the structured data format that tells Google exactly what your video contains. It is the single most important technical step for video indexing.
Here is a clean, validated JSON-LD implementation you can adapt:
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Your Video Title Here",
"description": "A 150–300 word description of what the video covers, matching your actual on-page description.",
"thumbnailUrl": "https://yoursite.com/images/video-thumbnail.jpg",
"uploadDate": "2024-03-15T08:00:00+00:00",
"duration": "PT4M30S",
"contentUrl": "https://www.youtube.com/watch?v=YOUR_VIDEO_ID",
"embedUrl": "https://www.youtube.com/embed/YOUR_VIDEO_ID",
"publisher": {
"@type": "Organization",
"name": "Your Company Name",
"logo": {
"@type": "ImageObject",
"url": "https://yoursite.com/logo.png"
}
}
}
The duration The field uses ISO 8601 duration format: PT4M30S, which means 4 minutes and 30 seconds. The thumbnailUrl must point to a publicly accessible image, not a CDN-cached URL that requires authentication. The uploadDate must match the actual upload date, not the page publication date.
Most automated schema plugins get one of these wrong. WordPress plugins, in particular, often fail to automatically extract the correct YouTube upload date and duration. Check the output in Google’s Rich Results Test before assuming it is working.
Key Moments and Video Chapters
If your video is longer than three or four minutes, the Key Moments schema can significantly improve your appearance in Google results by showing chapter markers directly in the search result. This is added via the hasPart property in your VideoObject:
"hasPart": [
{
"@type": "Clip",
"name": "Introduction",
"startOffset": 0,
"endOffset": 45,
"url": "https://www.youtube.com/watch?v=YOUR_VIDEO_ID&t=0s"
},
{
"@type": "Clip",
"name": "Keyword Research",
"startOffset": 46,
"endOffset": 180,
"url": "https://www.youtube.com/watch?v=YOUR_VIDEO_ID&t=46s"
}
]
For YouTube videos, Key Moments can also be added directly in the YouTube description using timestamps (e.g., 0:00 Introduction, 0:46 Keyword Research), and Google will pick these up automatically. This is the simpler implementation for most teams.
Video Sitemaps
If you host video on your own site rather than YouTube, you need a video sitemap. This is an XML file that lists each page containing video and provides the same metadata as your VideoObject schema. Google’s Search Console documentation provides the required format.
YouTube-hosted videos embedded on your site do not need a video sitemap — Google can crawl the embed and pull metadata from YouTube’s own schema. Self-hosted video, or video hosted on platforms like Vimeo or Wistia, does require it.
Video Hosting: Platform Comparison
Choosing where to host your video affects both its search performance and your website’s load speed. Here is a practical comparison:
| Platform | SEO Impact | Cost | CTA Customisation | Page Load Speed |
|---|---|---|---|---|
| YouTube | Strong Google integration; schema often auto-detected | Free | Limited | Fast (CDN) |
| Vimeo | Good schema support; clean embeds | From £7/month | Moderate | Fast (CDN) |
| Wistia | Excellent for site traffic; strong analytics | From £79/month | Extensive | Fast (CDN) |
| Self-hosting | Full control; sitemap required | Hosting costs | Full | Slow (without CDN) |
Self-hosting video files directly on your server is not recommended. Large video files significantly slow page load times and often cause Largest Contentful Paint failures in Core Web Vitals. If you want full control without the speed penalty, host the file via a CDN or use a managed platform like Wistia.
On-Page and On-Platform Optimisation

The technical schema gets you into the index. On-page optimisation determines how you compete once you’re there.
Video Titles and Descriptions
Your video title is both a ranking signal and a click-through trigger. It should lead with the primary keyword, be descriptive enough to accurately set expectations, and be compelling enough to earn the click over competing results.
For YouTube videos you also embed on your website, the title you use on YouTube becomes the title Google reads from the embed if you are not overriding it with the VideoObject schema. Set the schema title deliberately; do not rely on YouTube’s default.
Descriptions serve two purposes: they give Google crawlable text that contextualises the video, and they give human viewers enough information to decide whether the content is worth their time. Write the first two sentences of your description as a self-contained summary, because that is typically all that is visible before the “read more” truncation.
Closed Captions and Transcripts
Google cannot watch the video. It reads text. Closed captions provide a complete text representation of your video content that Google can index, giving you significantly more ranking surface area than metadata alone.
YouTube generates automatic captions for all videos. These are indexable but often inaccurate, particularly for technical language, Irish or Northern Irish accents, or industry-specific terminology. For content where accuracy matters, upload a corrected SRT file or use a transcription service to review the auto-generated captions.
Full transcripts embedded on the page (rather than just in the video description) add even more indexable content and improve accessibility for users who prefer to read.
Thumbnails
Thumbnail quality affects click-through rate, a ranking signal on YouTube that influences engagement across every platform. Auto-generated thumbnails, a random mid-sentence frame capture, consistently underperform custom-designed thumbnails.
A strong thumbnail has a clear focal point, contrasting colours, and either a text overlay (for tutorial content) or a compelling image that communicates the video’s value at a glance. Maintain consistency across your video library to build recognition.
The Rise of Vertical Video: SEO for TikTok, Reels, and Shorts
Short-form vertical video is now appearing in Google’s mobile SERP via the Short Videos carousel. This is a genuinely underserved area that most Video SEO guides have not yet addressed.
How Short-Form Video Appears in Google
Google began indexing TikTok content and YouTube Shorts in its mobile short videos carousel from 2023 onwards. The carousel appears for a broad range of queries, particularly entertainment, lifestyle, and how-to content, and is exclusive to mobile. Desktop searches do not currently show this placement.
The ranking signals for the Short Videos carousel differ from standard video indexing. Google draws primarily on the platform’s own engagement data (views, shares, saves) rather than on-page schema. This means short-form video SEO is more about platform optimisation than technical implementation.
Optimising Short-Form Video for Search
For YouTube Shorts: include your primary keyword in the title, write a description of at least three sentences, use relevant hashtags (including #Shorts), and ensure the content delivers genuine value in the first three seconds. Shorts with high completion rates perform better in both YouTube’s internal algorithm and Google’s carousel.
For TikTok: use on-screen text captions (these are indexed by TikTok and, increasingly, by Google), include a spoken keyword mention early in the video (auto-captions make this indexable), and use a hook in the first two seconds that keeps viewers watching.
The commercial opportunity here is significant for service businesses in Northern Ireland and Ireland. Most local and regional businesses are not yet producing short-form video content with any SEO intent. The barrier to entry is low; a smartphone and a basic ring light are enough to produce viable content, and the competition at a regional level is minimal.
Video SEO for the UK and Irish Market
Most Video SEO guides are written for a US audience, which creates some practical gaps when applying the advice in a UK or Irish context.
UK-Specific Hosting Considerations
Video content hosted on platforms outside the UK or the EEA must comply with GDPR when it involves the collection of viewer data. YouTube and Vimeo both offer GDPR-compliant embed options (cookie consent modes, privacy-enhanced embed URLs), but the implementation responsibility lies with the site owner. If your site operates a cookie consent solution, ensure your video embeds respect the consent state before loading tracking scripts.
For businesses serving regulated sectors in the UK (financial services, healthcare, legal), be aware that video content is subject to the same advertising and marketing regulations as written content. The ASA’s digital advertising rules apply to video content placed on owned channels, not just paid media.
Regional Search Context
Search behaviour in Northern Ireland differs from both the Republic of Ireland and Great Britain. Queries often include both Northern Irish and Irish vernacular, and some commercial terms have different local conventions. If you are producing video content targeting Northern Irish audiences specifically, this should be reflected in your on-screen language, examples, and any geotargeting you apply in YouTube’s audience settings.
ProfileTree, a Belfast-based digital agency, has found through client work that locally-contextualised video content featuring recognisable Belfast locations, references to regional business conditions, or interviews with local business owners consistently outperforms generic footage in engagement and conversion metrics for Northern Irish audiences.
UK Brand Examples Worth Studying
Gymshark built a significant portion of its early growth on YouTube through workout tutorials that combined genuine training value with product visibility, a model that works for any business whose product or service is demonstrable on camera. Monzo’s YouTube channel demonstrates how a brand can use video to demystify a complex product category without it feeling like advertising.
Neither of these is a direct model for a regional SME, but the underlying principle is useful first; promotional never applies regardless of budget or scale.
Measuring Success: KPIs and ROI for Video SEO

View count is not a business metric. It tells you how many people started watching, not whether watching made any difference to your commercial outcomes.
Metrics That Actually Matter
Click-through rate from search results: if your video appears in Google results, how often do people click? This is visible in Search Console and tells you whether your title and thumbnail are compelling enough.
Watch time and average view duration are the most heavily weighted engagement signals on YouTube. A video watched to 80% completion signals much higher quality than one abandoned at 20%. Track these in YouTube Studio.
Traffic from video to your website: if you host video on YouTube, use UTM parameters in the links in your video descriptions to track exactly how much traffic your video content drives to your site and which pages it lands on.
Conversion rate from video landing pages: for videos embedded on your own pages, and compare the conversion rate of pages with embedded video against equivalent pages without. This is typically tracked via Google Analytics 4’s page-level conversion reporting.
AI Overview citations: if you are tracking whether your content appears in Google’s AI Overviews, search your primary keywords and check whether your video content is being cited. This is a manual check for now, but as AI search becomes increasingly important in the commercial sector, it will become a standard metric.
Setting Realistic Timelines
Video indexing in Google Search Console typically takes 24 to 72 hours after the page is crawled, assuming your schema is correct. YouTube’s own algorithm takes longer to assess quality — expect two to four weeks before a new video’s performance stabilises.
Organic ranking improvements from video content on your own site take longer still, often two to three months, because they are part of broader page authority signals rather than a standalone video ranking.
Conclusion
The technical foundations of the VideoObject schema, correct metadata, and a video platform that does not harm your Core Web Vitals take a few hours to get right and then run in the background. The content side takes longer, but the UK and Irish market has a structural advantage: every major guide dominating this SERP is US-focused, and regional search intent is almost entirely unaddressed.
Start with the Google Search Console Video Indexing report. If your existing video content is not appearing there, fix that before producing anything new. Once the technical foundation is solid, the principle is the same as any other format: answer a specific question better than anyone else currently does, and make it easy for Google to understand what you have done.
FAQs
Does embedding a video on my page help my website’s SEO?
Yes, with caveats. Embedded video increases time on page and tends to earn more links and shares. The direct benefit depends on the correct implementation of the VideoObject schema; without it, Google may not count the video for video-specific rankings, even if engagement improves. Use Google’s Rich Results Test to verify your schema before assuming it is working.
Where should I host my videos for the best SEO results?
YouTube for reach and brand visibility; Wistia if your priority is driving traffic to your own site (it returns engagement data to your analytics rather than YouTube’s). Vimeo sits between the two at a lower cost than Wistia, with cleaner embeds than YouTube. Never self-host large video files without a CDN; the Core Web Vitals impact will likely cost you more in rankings than video presence gains.
Is YouTube SEO different from Google Video SEO?
Yes. YouTube ranks on watch time, click-through rate, and how well a video retains viewers on the platform. Google ranks on structured data quality, page authority, and content relevance to the query. A video can rank well on YouTube and be invisible in Google, and vice versa. Treat them as separate but complementary channels.
Do I need a transcript for every video?
For any substantive video tutorials, guides, or interviews, yes. Transcripts give Google a complete text representation of your content, dramatically increasing your ranking surface area. They also improve accessibility and make repurposing straightforward. For short-form videos under 60 seconds, on-screen captions are typically sufficient.