Converting to YouTube thumbnail format means turning a YouTube video's URL or 11-character video ID into direct HTTPS image links for the five thumbnail size categories that YouTube itself documents: maxres, standard, high, medium, and default. The conversion is purely structural: a YouTube video page exposes a fixed set of preview images on the i.ytimg.com image host, and the URL of each image follows a predictable pattern. You can reconstruct those URLs without calling the YouTube Data API by extracting the video ID from a supported link shape and appending one of five allowlisted filenames. The YouTube Thumbnail Downloader handles this reconstruction in your browser using an exact host allowlist and a strict ID match, then lists the available sizes with an Open image link for each one. The files remain hosted by YouTube, so the conversion does not copy or proxy the images; it simply builds the public URL you would otherwise assemble by hand.

What YouTube thumbnail format actually covers
Behind every YouTube watch page sits a small set of preview images. YouTube's developer documentation groups them into five categories: default, medium, high, standard, and maxres. Each one has a fixed filename and a fixed URL shape on the i.ytimg.com host. The corresponding pixel dimensions vary with the uploaded aspect ratio, but the category names themselves are stable. Knowing those categories is what makes the conversion straightforward: once you have the video ID, building a link for any category is just a matter of choosing the right filename from a fixed allowlist, and the same five filenames work for every public video.
| Category | Common pixel dimensions | Always present? |
|---|---|---|
| maxres | 1280 × 720 | Optional |
| standard | 640 × 480 | Optional |
| high | 480 × 360 | Usually present |
| medium | 320 × 180 | Usually present |
| default | 120 × 90 | Usually present |
The pixel dimensions above reflect YouTube's documented associations per the YouTube thumbnails resource; the actual rendered size can vary with the aspect ratio of the source image. The downloader labels the maxres and standard cards as optional because YouTube simply does not expose them for every video, and it reports that absence rather than substituting a smaller placeholder.
Which YouTube URL shapes the parser accepts
The conversion step depends on extracting a valid 11-character video ID from whatever URL form a person pastes. The downloader uses an exact host allowlist and recognizes the most common YouTube link shapes rather than guessing from arbitrary text. The accepted shapes cover every URL YouTube currently issues for public videos:
- Regular watch links — https://www.youtube.com/watch?v=XXXXXXXXXXX, where the ID follows the v= parameter.
- Short links — https://youtu.be/XXXXXXXXXXX, where the ID is the path segment after the host.
- Shorts links — https://www.youtube.com/shorts/XXXXXXXXXXX.
- Embed links — https://www.youtube.com/embed/XXXXXXXXXXX.
- Mobile YouTube links — https://m.youtube.com/watch?v=XXXXXXXXXXX.
- Live-video links — https://www.youtube.com/live/XXXXXXXXXXX.
Bare 11-character IDs are accepted directly as long as they match the YouTube alphabet: ASCII letters, digits, underscores, and hyphens. Anything outside that set is rejected, including lookalike hosts such as youtube.com.example.test, unsupported paths, missing IDs, and injected filenames. This strictness is what keeps the reconstruction honest. The tool only ever builds URLs from a fixed allowlist of five filenames, so the input cannot turn the image URL into an arbitrary path.
How to convert to YouTube thumbnail format
- Paste a supported YouTube URL into the input field, or type the exact 11-character video ID directly if you already have it.
- Select the Get thumbnails action and wait for the YouTube-hosted previews to load. The downloader builds the five candidate image URLs locally and asks YouTube's image host for each one.
- Review the resulting cards. Each card shows the size, the image returned by YouTube, and an Open image link. If an optional size is not exposed for that video, the card states that explicitly rather than substituting a different resolution.
- Open the size you want in a new tab and use the browser's save-image command only when you have a valid reuse right — for example, when you own the video, have written permission from the owner, or have confirmed that your use is otherwise lawful.
Worked example with the ID dQw4w9WgXcQ: that string is eleven characters and contains only ASCII letters and digits, so the parser keeps it as a bare ID. It then constructs five HTTPS paths on i.ytimg.com — /vi/dQw4w9WgXcQ/maxresdefault.jpg, /vi/dQw4w9WgXcQ/sddefault.jpg, /vi/dQw4w9WgXcQ/hqdefault.jpg, /vi/dQw4w9WgXcQ/mqdefault.jpg, and /vi/dQw4w9WgXcQ/default.jpg. Each path is built from a filename drawn from the fixed allowlist, so the input cannot rename the file or point it elsewhere; it can only determine which video the URLs belong to.
Why some thumbnail sizes come back missing
Even with a perfectly valid video ID, not every card will return an image. YouTube decides per video which thumbnail categories to expose, and that decision can change over time:
- The owner uploads a new custom thumbnail, which generally makes the high, medium, and default variants available while leaving maxres and standard conditional on the source image.
- The owner restricts the video by region, age gate, or membership, which can change the set of resources YouTube will serve to an unsigned browser request.
- The video is removed, taken private, or replaced, after which the i.ytimg.com paths stop resolving and every card reports failure.
- The uploaded thumbnail does not meet the minimum resolution requirements for a maxres variant, so YouTube skips that category entirely for that video.
The downloader reports a failed optional image honestly rather than pretending that a smaller placeholder is the requested size. That distinction matters when you are choosing a source image for editing: a 320 × 180 medium image is not the same asset as a 1280 × 720 maxres image, and the tool does not blur the difference between them. If you need a specific size that does not load, the typical remedy is for the video owner to upload a higher-resolution custom thumbnail.
What the downloader does not do
Listing the limits up front avoids surprises. The tool does not download private videos, bypass channel permissions, retrieve deleted content, remove watermarks, upscale images, or guarantee that every listed variant exists. It does not call the quota-bearing YouTube Data API, verify ownership, or inspect a video's license. Availability can change whenever the owner replaces a thumbnail, restricts a video, or takes it down. The files remain on YouTube's image host — the downloader does not proxy, copy, or store the images, and Lizely's servers never receive the URL you paste.
Because parsing runs locally, you can verify the inputs yourself: trim whitespace, accept a bare ID only when it matches the exact 11-character YouTube alphabet, and otherwise treat the value as a URL on the allowlisted hosts. If you ever need thumbnails that the tool cannot reach, the next step is the YouTube Data API's videos resource, which carries its own quota and authentication requirements and is documented separately from the public image host used here.
Reuse rights, copyright, and platform rules
Opening a thumbnail image is a technical convenience, not a grant of reuse rights. Thumbnails may be protected by copyright, trademark, privacy, publicity, or YouTube's platform rules, and those protections travel with the image no matter how it was retrieved. Reuse is appropriate when you own the video, have written permission from the owner, or have a separate legal basis such as fair use or fair dealing. Linking back to the original video page is courteous and helps anyone who wants to verify the source, but it does not by itself convert a copyrighted image into a free-to-use one.
For your own channel, the cleanest path is to upload your own custom thumbnail through YouTube Studio rather than repurposing someone else's preview image. For third-party videos, the right answer depends on the specific use: a single low-resolution thumbnail used for editorial commentary is treated differently from a high-resolution thumbnail reused on a commercial landing page. When in doubt, ask the owner, or restrict your use to embedding the video itself rather than copying the preview image into a new surface.