Skip to content
>_ TrueFileSize.com

Sample WebM Files — Open Video Format Downloads

Download free sample WebM files with VP8, VP9, and AV1 codecs. Google's open, royalty-free video format — designed for web streaming with smaller files and good quality.

sample-1mb.webm

1 MB

854×480 · 480p · VP9

Verified file details
Filename
sample-1mb.webm
Exact size
1,048,576 bytes
Displayed size
1 MB
MIME type
video/webm
Dimensions
854 x 480 px
Resolution
480p
Codec
VP9
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/webm/sample-1mb.webm

sample-10mb.webm

10 MB

1920×1080 · 1080p · VP9

Verified file details
Filename
sample-10mb.webm
Exact size
10,485,760 bytes
Displayed size
10 MB
MIME type
video/webm
Dimensions
1,920 x 1,080 px
Resolution
1080p
Codec
VP9
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/webm/sample-10mb.webm

sample-vp8.webm

15 MB

1280×720 · 720p · VP8

Verified file details
Filename
sample-vp8.webm
Exact size
15,728,640 bytes
Displayed size
15 MB
MIME type
video/webm
Dimensions
1,280 x 720 px
Resolution
720p
Codec
VP8
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/webm/sample-vp8.webm

sample-av1.webm

5 MB

1920×1080 · 1080p · AV1

Verified file details
Filename
sample-av1.webm
Exact size
5,242,880 bytes
Displayed size
5 MB
MIME type
video/webm
Dimensions
1,920 x 1,080 px
Resolution
1080p
Codec
AV1
License
CC0 / Public Domain
Download URL
https://truefilesize.com/files/webm/sample-av1.webm

What is WebM?

WebM is an open, royalty-free video format from Google based on the Matroska container. Designed for web streaming — smaller files, good quality. Supported natively by Chrome, Firefox, and Edge. Limited support on Safari (check caniuse.com).

WebM vs MP4 for web video

FeatureWebM (VP9/AV1)MP4 (H.264)
LicensingRoyalty-freeRequires licensing
File sizeSmaller (VP9/AV1)Larger at same quality
Safari supportLimitedFull
Chrome/FirefoxFullFull
Best codecAV1 (newest)H.264 (universal)

Best practice: serve both formats

<video controls>
  <source src="video.webm" type="video/webm">
  <source src="video.mp4" type="video/mp4">
</video>

Browsers pick the first format they support. Chrome/Firefox use WebM (smaller). Safari falls back to MP4 automatically.

Technical specifications

ContainerWebM (Matroska-based)
Video codecsVP8, VP9, AV1
Audio codecsVorbis, Opus
Developed byGoogle (open-source)
LicensingRoyalty-free (BSD-style)

Frequently Asked Questions

What is AV1 and why should I care?
AV1 is the newest open-source video codec — developed by the Alliance for Open Media (Google, Mozilla, Netflix, etc.). It offers ~30% better compression than VP9 and ~50% better than H.264, while being royalty-free. Our sample-av1.webm lets you test AV1 support.
Does Safari support WebM?
Safari 14.1+ (macOS Big Sur) has partial WebM support — VP8/VP9 in some configurations. Safari 16+ has better support. For reliable cross-browser delivery, always include an MP4 fallback using the <video> source element.
Should I use VP8 or VP9?
VP9. It offers ~30% better compression than VP8 at the same quality and has broad browser support (Chrome, Firefox, Edge). VP8 is only needed if you must support very old browser versions.
How do I create WebM files?
FFmpeg: ffmpeg -i input.mp4 -c:v libvpx-vp9 -crf 30 -b:v 0 output.webm. For AV1: ffmpeg -i input.mp4 -c:v libaom-av1 -crf 30 output.webm. Note: AV1 encoding is significantly slower than VP9.

Other video formats

Related reading