9951 explained code solutions for 126 technologies


ffmpegCreate video thumbnail using ffmpegthumbnailer


ffmpegthumbnailer -i in.mp4 -o out.jpg -s 0 -t 10% -q 10ctrl + c
-i in.mp4

input video file

-o out.jpg

output image thumbnail

-s 0

uses the same file dimensions as video. Use any number for different size (e.g. 128 or 512).

-t 10%

thumbnail will be made at 10% of video length. You can also use time format hh:mm:ss.

-q 10

best image quality possible. Available values are 1...10.