Skip to main content
Capture a single frame from a video at a specific timestamp. Useful for video previews, poster frames, or social card images.

Code

How the FFmpeg command works

  • -i {{in_1}} — input video URL
  • -ss 00:00:17 — seek to 17 seconds (format: HH:MM:SS or raw seconds)
  • -vframes 1 — capture exactly one frame
  • {{out_1}} — output file (thumbnail.jpg). Use .png for lossless output.

Response