Skip to content

A 50 MB WEBP test file

100% Free No signup Instant download Browser-only 5 languages
Free download(50 MB)

webp-50mb.webp

File info

File Format WEBP
File Size 50 MB(52,428,800 bytes)
MIME Type image/webp
MD5 c3722bd6bf51f4052883ff00bdeb8304
SHA-1 70f8ae5ab30487f8ccebb678ee8e8ead4c6a825d
SHA-256 6f65374267de6ce101b3c3f7dcf52583e5d6cf71561a9c591b8ba7e03a5da7c8

Download via command line

curl
curl -O https://devlab.itlibra.com/files/images/webp/webp-50mb.webp
wget
wget https://devlab.itlibra.com/files/images/webp/webp-50mb.webp
PowerShell
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/images/webp/webp-50mb.webp" -OutFile "webp-50mb.webp"

About this file

A 50 MB test file in WEBP format, sized to exactly 52,428,800 bytes. Free to download with no signup, for verifying upload limits and file-handling behaviour.

The MD5, SHA-1 and SHA-256 values listed above are the real digests of this file. Recomputing them after download confirms the transfer was not corrupted, and they double as known-good expected values when testing a hashing library.

What this size means in practice

50 MB is the point where GitHub starts warning you on push (it hard-rejects above 100 MB). In practice it is the decision line for whether a binary belongs in Git directly or should move to Git LFS.

At this scale, an implementation that buffers the whole request in memory burns 50 MB or more per worker process — ten concurrent uploads means 500 MB. It is a good size for verifying that streaming or spill-to-temp-file actually works.

Getting a feel for this size

On a 10 Mbps link the transfer takes roughly 41.9 seconds, and about 4.2 seconds at 100 Mbps. Base64-encoded it grows to roughly 68,267 KB.

Estimating a photographic WEBP at roughly 0.15 bytes per pixel, this size works out to around 349,525,333 pixels — about 21,588 × 16,191 px at a 4:3 aspect ratio. Compression varies enormously with image content, so treat this purely as an order-of-magnitude figure.

What to check for this format

WebP uses a RIFF container: the file starts with RIFF and has WEBP at byte 9. It supports lossy, lossless, alpha, and animation — but detecting it from the extension or only the first four bytes risks confusing it with other RIFF-based formats.

  • Whether your server-side image library actually supports WebP — older GD or ImageMagick builds may not
  • Whether it is served as image/webp — a wrong Content-Type makes browsers download instead of render it
  • Whether the JPEG / PNG fallback in your <picture> element works for unsupported clients

FAQ

Is this file free to use?
Yes — fully free and no signup required. Use it for any commercial or non-commercial test/verification purpose.
What is inside the file?
Dummy data generated for testing — sized to match the listed size exactly.
What are the hash values for?
Verify integrity after download or use them as test data for hashing libraries.