Why this is fast
Two reasons. Native server ffmpeg with real SIMD and threading is roughly an order of magnitude faster than the browser-WASM equivalent at single-frame seeks. And the network round-trip is short: the upload goes to the nearest Backblaze B2 point of presence via a presigned URL (Asia-Pacific viewers do not push bytes to US-east), ffmpeg writes one frame and exits, and the image comes back through Bunny CDN from the same edge. A 100 MB source produces a clean still in a second or two, including upload.
What this tool does, exactly
We run -ss <timestamp> -frames:v 1 -an -c:v <codec> — seek to the timestamp, write exactly one frame, drop audio, and encode with mjpeg, png, or libwebp depending on the format you picked. JPG uses -q:v 2 (near-maximum quality, FFmpeg's recommended setting for archival JPG output). The output keeps the source video's native pixel dimensions — no upscaling, no downscaling, no display-DPI artifacts you would get from an OS screenshot.
Choosing the right frame for a YouTube or LinkedIn thumbnail
A good thumbnail frame is sharp, well-lit, and shows the subject mid-gesture rather than mid-blink. Type a timestamp as mm:ss (for example 1:05), or a bare number of seconds with a decimal (12.5) for sub-second precision. If the first grab lands on a motion-blurred frame, nudge the timestamp a few tenths of a second either way and grab again — each pull is fast. The default of 0:00 grabs the opening frame, which is handy for poster images. For LinkedIn videos in particular, the auto-grabbed poster is almost always the wrong frame — uploading a custom thumbnail picked by hand here lifts inline view rates noticeably.
Sister tools
Want a short looping clip instead of a still? Video to GIF converter and MP4 to GIF converter both work from any video source. Cut just the section the thumbnail lives in? Video cutter. Crop or resize the still afterward? Crop video and resize video both handle pre-thumbnail tweaks. If you record on Clipy, every share page auto-generates a thumbnail — use this tool when you need a different frame than the auto-picked one.