Initializing... drag & drop files here
Supports: CAVS
A bare .cavs file is a raw Chinese AVS (AVS1) video bitstream — coded picture data with no container around it, which is why most media players refuse to open it. This tutorial shows how to pull one frame out of that stream and save it as a TIFF, the lossless raster format built for archiving, print, and precision editing rather than the web. It is written for anyone holding .cavs footage from Chinese broadcast or DVD-era material who needs a reference-quality still without first installing FFmpeg — and it covers the one setting that quietly decides whether your TIFF is truly lossless.
.cavs onto the page, or click "+ Add Files" to browse. You can queue several streams and process them with the same settings.2.100 captures the frame at 2.1 seconds. That single frame becomes your TIFF.The trap on this page is the Compression Type dropdown. It defaults to JPEG, which is a lossy scheme defined inside the TIFF format — handy for size, but it re-compresses the frame and defeats the reason most people reach for TIFF in the first place. If you want an archival or print-quality still, change it before you convert. All four of the lossless schemes give you byte-for-byte identical pixels; they differ only in file size and how broadly old software reads them:
Picking the frame is the other half. Because a raw .cavs stream is video-only, the grab always has picture to read — there is no audio track to worry about, so the timestamp is the only real decision. Time (seconds) accepts decimals, so nudge it by hundredths (2.040, 2.080) to step around a moment of motion until you land on a clean frame. To grab several stills across the clip instead, switch Frame Selection to Multiple Screenshots and set a capture rate; the tool returns the stills as a ZIP of separate TIFFs — one file per frame, not a single multipage TIFF.
.tiff in an <img> tag. For on-screen viewing or posting, extract the frame as CAVS to JPG instead.If your file isn't a true raw AVS stream — for instance an AviSynth .avs script (a text file of frameserving instructions, not media) saved with the wrong extension, or a .cavs that is zero-byte or truncated from an unfinished download — there is no decodable picture to capture, and the grab fails. Re-download the source, confirm it is an actual AVS video bitstream, and try again. If the footage is wrapped inside a container (a .ts, .mp4, or .mkv), point the matching converter at the whole file rather than a demuxed .cavs. If your software expects the three-letter spelling, the identical-bytes CAVS to TIF page outputs the same file with a .tif extension.
Yes. A .cavs is a raw AVS1 video elementary stream — by design it carries picture only, with no soundtrack inside. That missing audio matters for an audio export, but it is irrelevant here: the frame grab reads the video stream, which is all a .cavs contains, so there is always an image to capture. You simply get a silent still, which is exactly what an image is.
A .cavs is a raw Chinese AVS video bitstream — the picture half of AVS1, China's first-generation Audio Video Standard, standardized as GB/T 20090.2 and adopted as a national standard in February 2006 by the AVS Workgroup (which began work in 2002). Because it is a bare elementary stream with no container, no index, and no audio, most players have nothing to latch onto and refuse to open it; tools built on FFmpeg read it through a dedicated raw AVS demuxer. This page extracts a frame from that stream so you don't have to install one.
By default the Compression Type dropdown is set to JPEG, which is a lossy scheme defined within the TIFF format — convenient for size, but it re-compresses the frame. If your goal is an archival or print-quality still, switch it to None, LZW, Deflate, or PackBits: all four are lossless, so the image is identical and only the file size differs. LZW is the most broadly supported compressed-TIFF scheme; Deflate/ZIP usually produces a slightly smaller file; None is the safest choice for legacy tools that choke on any compressed TIFF.
No, and this is the honest catch. TIFF stores the decoded frame verbatim — no second round of lossy compression is layered on top — so it is as faithful a copy as the format allows. But AVS1 is first-generation broadcast video, standard or high definition with TV-range color, not 4K, and TIFF cannot reconstruct detail the original encode discarded. You get a pristine, re-editable copy of the existing frame, not a higher-resolution one.
The output is a standard baseline TIFF conforming to TIFF 6.0, published 3 June 1992 — still the current revision of the format. TIFF was first specified by Aldus in 1986, and the specification passed to Adobe when it acquired Aldus in 1994; it has stayed stable since, which is part of why TIFF remains a dependable archival container decades later. The file opens in Photoshop, GIMP, ImageMagick, and essentially any imaging tool.
Your .cavs is uploaded over an encrypted (TLS) connection, processed on our servers, and the files are deleted automatically a few hours after conversion — no sign-up, no watermark, never shared or made public. In our testing, a standard-definition frame saved as uncompressed 8-bit RGB TIFF landed near 1 MB, matching the raw pixel math (about 720 × 480 × 3 bytes); turning on LZW or Deflate trimmed that further on natural-image content with zero quality loss.