Powered by WebAssembly

Generate Video Thumbnail (Free, Online, No Upload)

Generate a thumbnail image from any video right in your browser. Nothing gets uploaded to a server. Pick a specific timestamp or let the tool grab a frame automatically. The extraction runs locally using FFmpeg compiled for your browser, so your video stays on your device.

Try it in your browser

Loading FFmpeg engine... (~31 MB)

Use the API

curl -X POST https://renderio.dev/api/v1/run-ffmpeg-command \
  -H "X-API-KEY: ffsk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
  "ffmpeg_command": "-i {{in_video}} -ss 00:00:02 -vframes 1 -q:v 2 {{out_video}}",
  "input_files": {
    "in_video": "https://example.com/input.mp4"
  },
  "output_files": {
    "out_video": "output.jpg"
  }
}'

Need an API key? Get your free API key to start processing files programmatically.

Common Variations

Grid of thumbnails (4x4)
-i input.mp4 -vf "select=not(mod(n\,100)),scale=320:180,tile=4x4" -frames:v 1 output.jpg
Best frame selection (scene change)
-i input.mp4 -vf "select=gt(scene\,0.3)" -frames:v 1 -q:v 2 output.jpg
Custom size thumbnail
-i input.mp4 -ss 00:00:05 -vframes 1 -vf scale=640:360 -q:v 2 output.jpg

Related Operations

Need to process at scale?

Automate this with the RenderIO FFmpeg API. Process thousands of files programmatically or through no-code video automation.