How to screenshot a YouTube video
Five ways to capture a still, and how to keep the player controls out of the shot.
Free toolYouTube ScreenshotCapture a clean still from a playing video. No player controls, no progress bar, no watermark.Open the screenshot toolFirst: the two settings that decide your quality
Whatever method you use, a screenshot can only capture what is drawn on screen. Two things set that ceiling:
- Playback quality. The player defaults to "Auto", which often means 480p or 720p. Open the gear menu and choose the highest number offered, then wait a few seconds. Switching is not instant, and capturing too early gets you the old stream upscaled.
- Player size. Fullscreen (F) or theatre mode (T) means more pixels on screen and therefore a larger capture.
Getting a clean frame
The control bar is the thing that ruins most YouTube screenshots. It appears on mouse movement and stays visible while paused-by-click.
The reliable sequence:
- Press K or Space to pause. Use the keyboard, not the mouse.
- Use , and . to step frame by frame to the exact moment.
- Move the cursor off the video and wait about three seconds for the overlay to fade.
- Capture.
Landing on the exact moment
Scrubbing with the mouse is never precise enough. The progress bar is a few hundred pixels wide, and a ten-minute video has around 18,000 frames behind it. Pause instead, then press . and , to step forward and back one frame at a time. They are YouTube's own shortcuts, they work only while paused, and they do not exist on mobile at all. The frame-by-frame guide covers the failure cases and what to do on a phone.
The catch is what this leaves you with. Frame stepping requires a paused player, and a paused player draws its play button, progress bar and title over the picture. So the screenshot you take at the end includes all of it. Everything below is about getting the frame without them.
Method 1: floi Live Capture, in any desktop browser
Open the screenshot tool, load the video, click Start screen capture and pick the tab. Frames go into a gallery you can export individually or as a ZIP, in PNG, JPG or WebP. Nothing is recorded or uploaded. The frames are drawn to a canvas in your own tab.
Best when you want several frames, or exact control over the output format.
Method 2: the built-in system screenshot
| Platform | Shortcut |
|---|---|
| Windows 10/11 | Win + Shift + S, a region snip to the clipboard |
| macOS | Cmd + Shift + 4, then drag a region. Add Ctrl for the clipboard |
| iPhone / iPad | Side button + Volume Up (or Home + Side on older devices) |
| Android | Power + Volume Down |
| Linux (GNOME) | Shift + Print |
Fastest for a single grab. You crop afterwards, and you may catch the cursor or a notification.
Method 3: extract from the file
The only way to exceed your display's resolution. If you have the video file, open it in the frame extractor and capture at the source's true resolution, stepping one real frame at a time.
Method 4: the auto-generated thumbnails
YouTube publishes three stills captured at roughly 25%, 50% and 75% through every video. If one happens to be near the moment you want, it is a zero-effort 480×360 grab. Paste the link into the thumbnail downloader and they appear alongside the cover images.
Method 5: ffmpeg, for the file you already have
ffmpeg -ss 00:01:23.500 -i video.mp4 -frames:v 1 -q:v 2 frame.jpgPutting -ss before -i makes the seek fast. Exact and scriptable, but it needs ffmpeg installed and the file on disk.
A note on rights
A frame from a video is a derivative of a copyrighted work. Personal reference, commentary, criticism, news reporting and education are broadly defensible under fair use and equivalent doctrines, but the specifics differ by country and none of this is legal advice. Republishing someone else's frames as your own content is not covered.