View and download YouTube video thumbnails in all available resolutions.
{{ videoId }}
{{ thumb.url }}
This tool lets you view and download the thumbnails of any YouTube video in all available resolutions. Simply enter the video URL and the tool shows you all available thumbnail variants — from the highest resolution (1280×720) down to the default size (120×90).
YouTube provides thumbnails in up to five different resolutions: Max Resolution (1280×720), Standard Definition (640×480), High Quality (480×360), Medium Quality (320×180) and Default (120×90). Not all resolutions are available for every video — the tool automatically checks which variants exist.
The tool uses no scraping and no API key. It leverages a stable public property of YouTube that has worked for years: for every public or unlisted video, YouTube automatically generates a set of preview images under a computable URL: https://img.youtube.com/vi/{VIDEO_ID}/{quality}.jpg. The video ID is the 11-character identifier from the URL — whether you paste a classic watch URL (youtube.com/watch?v=ID), a short link (youtu.be/ID), an embed URL (youtube.com/embed/ID) or a Shorts link (youtube.com/shorts/ID). The tool detects all four formats via regex and then returns the direct URLs to five resolutions.
Because the URLs are deterministic, your browser talks directly to Google's CDN — calcsi.com is not in the data path, has no access to the images, and cannot send any read receipt to Google. We merely show you the link list. When you click "Download", the browser fetches the image from YouTube's CDN via fetch(), turns it into a blob and saves it locally. If CORS prevents this (some restrictive browser configurations), we open the image in a new tab — you can then save it manually with right-click. Either way: no tracking, no account, no watermark.
Some resolutions — particularly maxresdefault at 1280x720 — only exist when the original upload was at least HD. We check availability by letting the browser load the image: if that succeeds, status=available, otherwise unavailable. So you only see what is actually retrievable. Private videos or videos the owner has deleted return a 404 — and the tool honestly reflects that, without guessing or showing fake placeholders.
YouTube exposes up to five main qualities plus frame captures for every video. The URL structure always follows the same pattern: replace the {VIDEO_ID} token with your video's 11-character ID:
https://img.youtube.com/vi/{VIDEO_ID}/default.jpg — default (120 x 90) — small preview that YouTube also uses inside mobile playlists. Ideal for thumbnail lists with minimal bandwidth. Available for every video.https://img.youtube.com/vi/{VIDEO_ID}/mqdefault.jpg — mqdefault (320 x 180) — medium quality. A solid sharpness-to-size ratio for card layouts and mobile-first designs. Available for every video too.https://img.youtube.com/vi/{VIDEO_ID}/hqdefault.jpg — hqdefault (480 x 360) — high quality, the standard for embed previews and search-result listings. Available for every video — guaranteed to exist even when the original was uploaded in SD.https://img.youtube.com/vi/{VIDEO_ID}/sddefault.jpg — sddefault (640 x 480) — standard definition, sharper than hqdefault. Available even for videos uploaded only in 480p.https://img.youtube.com/vi/{VIDEO_ID}/maxresdefault.jpg — maxresdefault (1280 x 720) — HD quality. Only available when the original was uploaded in 720p or higher. For older SD videos, YouTube returns 404 here. You will want this file for print or presentation use at normal viewing distance.Additionally YouTube provides three single frame captures: 1.jpg (start), 2.jpg (middle), 3.jpg (end) — each at 120x90. The 0.jpg URL returns a neutral preview (480x360), often used as the player background before the video starts.
The tool is meant for cases where the thumbnail itself is the asset — and you do not want to dig the right image URL out of browser devtools by hand:
maxresdefault and use it as a slide background with source attribution.Keep two points in mind. Technically: maxresdefault.jpg returns 404 for older or SD-only uploads — the tool then displays "not available". For private videos all resolutions are 404. We cannot work around this, because we do not use any privileged YouTube APIs. Legally: a video's thumbnail belongs, under copyright, to the video owner — usually the channel operator. You can comfortably use it for your own research, for educational quotation contexts, and for content you uploaded yourself. For commercial re-publication — e.g. selling T-shirts, ad creatives or book projects with third-party thumbnails — you generally need permission. YouTube's Terms of Service also permit reuse only where you have the right. When in doubt: ask the creator, or produce your own thumbnail.
img.youtube.com/vi/{ID}/{quality}.jpg format and loads them in the browser. No data leaves your device via calcsi.com.maxresdefault.jpg for videos uploaded in HD or higher. Older uploads (roughly pre-2010) or deliberately SD-only videos have no HD preview. In that case the next smaller resolution (sddefault) is usually available.youtube.com/shorts/{ID} format and extracts the 11-character ID. The associated img.youtube.com/vi/{ID}/{quality}.jpg URL then returns the usual thumbnail variants — Shorts are treated internally just like regular videos.