Initializing... drag & drop files here
Supports: TIFF, TIF
TIFF (Tagged Image File Format, finalized by Aldus/Adobe as TIFF 6.0 in June 1992) is the dominant master format for scanners, microscopes, satellite imagery, VFX render pipelines, and print-press workflows. Its strength — uncompressed or losslessly compressed multi-layer tiles with 16-bit channels — is also its weakness for sharing: a single 4K TIFF is often 30-80 MB and zero browsers display TIFF inline. Converting a TIFF sequence to WebM (VP8/VP9 in a Matroska-derived container, open and royalty-free) gets you something every modern browser plays natively.
<video> tags; TIFF requires a download and a separate viewer.| Property | TIFF | WebM |
|---|---|---|
| Type | Still image (with multi-page extension) | Animated video |
| Compression | None / LZW / Deflate / JPEG / ZSTD (per IFD) | VP8 or VP9 inter-frame |
| Color depth | 1, 8, 16, 32-bit per channel | 8-bit (VP8) / 8-12-bit (VP9) |
| Alpha channel | Yes (4th sample) | VP8 no, VP9 yes |
| Max file size | 4 GiB classic / unlimited BigTIFF | Container limit, in practice ~8 GiB |
| Web playback | None (download + external viewer) | Native in Chrome, Firefox, Edge, Safari 16+ |
| Typical size, 24 frames at 1080p | ~60-200 MB | ~1-5 MB |
| Best for | Master archival, print, scientific imaging | Web delivery, embedded clips |
WebM is a true video, so "Image Duration" effectively sets your playback rate. The math:
| Image Duration | Effective frame rate | Best for |
|---|---|---|
| 1/60 second | 60 fps | Smooth game capture, ultra-fluid motion |
| 1/30 second | 30 fps | Standard video (matches NTSC, most web video) |
| 1/24 second | 24 fps | Cinematic look, matches film and most renders |
| 1/10 second | 10 fps | Stop-motion, low-bandwidth time-lapse |
| 1 second | 1 fps | Slow scientific time-lapse |
| 2-5 seconds | 0.2-0.5 fps | Slideshow / portfolio walkthrough |
For a 240-frame Blender render exported as TIFFs, pick 1/24 second to get a 10-second cinematic clip. For a 12-image product slideshow, pick 3-5 seconds and a Very High quality preset.
It depends on the codec routing. VP9 supports an alpha channel and is what most WebM tooling uses by default for transparent output; VP8 does not. If you want transparency preserved, leave the Background Color set so it acts as a fallback for players that ignore alpha, and pick a Very High or Highest quality preset to minimize halo artifacts around soft edges. For broadest player compatibility (some video players still don't honor WebM alpha), the safer route is to flatten with a chosen background color.
Both work. A multi-page TIFF (one .tif with multiple IFDs — common from scanner software, fax, and OME-TIFF microscopy) is treated as an ordered image sequence and converted in one pass. Separate .tif/.tiff files also work: drop them into the uploader, then use "Merge images" to chain them in filename order. If you need a specific order, rename to 001.tif, 002.tif, etc. before uploading.
That's the codec doing its job. A 24-frame TIFF sequence at 1920×1080 with no compression can easily be 150 MB on disk; the same content as VP9 WebM lands at 2-5 MB because inter-frame compression only stores what changed between frames. If the WebM looks visibly worse than the TIFFs, raise Quality Preset to Highest, increase the resolution if you scaled down, or pick the Constant Quality mode. For full archival masters, keep the TIFFs — WebM is for delivery, not archival.
Yes on current versions. Safari added partial WebM support in 14.1 on macOS (April 2021) and 14.5 on iOS, and full support landed in Safari 16 / iOS 17.4. Roughly 95%+ of global browser users have WebM playback per caniuse data. For audiences on older iOS, use TIFF to MP4 instead — H.264 plays everywhere from iOS 3 onward.
Set Image Duration to 1/24, 1/30, or 1/60 second — those are the standard cinema, video, and high-frame-rate rates. If you set Duration to 1+ seconds, each TIFF becomes one full second of static playback, which reads as a slideshow. A 60-frame render at 1/30s plays as a 2-second smooth clip; the same 60 frames at 2 seconds each plays as a 2-minute slideshow.
For social and chat, 720p (1280×720) is the sweet spot — small file, looks crisp on phones. For YouTube or a product page, 1080p. For a Notion or Slack embed, 480p is often enough. If your TIFFs are higher resolution than you need, scaling down at convert time saves significantly more space than encoding 4K and relying on the player to resize.
Not from a TIFF source — TIFF is an image format with no audio. The output WebM is video-only. If you need narration or music, render the silent WebM, then composite audio in a video editor (DaVinci Resolve Free, Shotcut, or CapCut) and export as a new WebM or MP4. For an audio-first workflow, see compress WebM to shrink the final file after adding audio.
Two reasons: file size and royalty status. VP9 in WebM is typically 30-50% smaller than H.264 in MP4 at matched quality, which matters for CDN egress and mobile loading. WebM is also a fully open, royalty-free format — no codec licensing concerns for commercial use. The tradeoff is older device compatibility: MP4/H.264 plays on essentially every device made since the mid-2000s, while WebM needs Safari 16+ on Apple devices. For maximum reach, output both or use TIFF to MP4; for modern web only, WebM wins.