Guide

YouTube thumbnails: WebP vs JPG

YouTube encodes many stills twice. JPEG is the historic path. WebP is often smaller at a similar look. Neither is a higher resolution than the other for the same filename family.

Two directories, same ID

/vi/{id}/maxresdefault.jpg and /vi_webp/{id}/maxresdefault.webp are siblings, not a 4K upgrade. If maxres JPEG is missing, maxres WebP is usually missing too. The downloader lists both when they measure as real images.

When to keep WebP

Web pages, newsletters, and app assets that already speak WebP. Smaller bytes, same 1280×720. The converter can also emit WebP from a JPEG original in the browser if YouTube never published a WebP twin.

When to keep JPEG

Print pipelines, old CMS, email clients that still choke on WebP, and any workflow that will edit in a tool that hates WebP. Re-saving WebP → JPEG is a generation of loss; prefer the JPEG original from /vi/.

Copy-paste both families

https://i.ytimg.com/vi/VIDEO_ID/maxresdefault.jpg
https://i.ytimg.com/vi_webp/VIDEO_ID/maxresdefault.webp
https://i.ytimg.com/vi/VIDEO_ID/hqdefault.jpg
https://i.ytimg.com/vi_webp/VIDEO_ID/hqdefault.webp

HTML with a picture element if you host both (after you have rights to the still):

<picture>
  <source type="image/webp" srcset="thumb.webp">
  <img src="thumb.jpg" width="1280" height="720" alt="Video title">
</picture>

Convert in the browser when you need PNG or a WebP YouTube never published: thumbnail converter. Path map: thumbnail URL format.

FAQ

Questions people actually type

Does YouTube serve WebP thumbnails?

Often yes, under i.ytimg.com/vi_webp/{id}/ with names like maxresdefault.webp and hqdefault.webp. JPEG under /vi/ remains the compatibility default.

Is YouTube thumbnail WebP higher resolution than JPG?

No. Matching names are the same pixels. maxresdefault.webp is not 4K. It is usually a smaller file at 1280×720.

What is the YouTube thumbnail WebP URL?

https://i.ytimg.com/vi_webp/VIDEO_ID/maxresdefault.webp and hqdefault.webp. Use the URL generator to copy only files that exist.

Should I convert JPG to WebP myself?

If YouTube already published vi_webp, download that original. Re-encoding JPEG to WebP in the browser is a new generation. Use the converter when no WebP twin exists.

Why keep JPEG instead of WebP?

Print, old CMS, some email clients, and editors that still hate WebP. Prefer the /vi/ JPEG original rather than decoding WebP and saving JPEG again.

Can I upload WebP as a custom YouTube thumbnail?

Studio’s documented uploads are JPEG, PNG, or GIF under 2 MB. WebP as an upload is not the public CDN contract this site relies on.

Does every video have maxresdefault.webp?

No. If maxres JPEG is missing, maxres WebP is usually missing too. HQ WebP is more common than HD WebP.

Which format should a blog use?

WebP on the page if you host the file and your audience’s browsers are modern. JPEG as fallback. Do not hotlink YouTube forever if you have rights to host a copy.