rahulsushilsharma / video-edit-tools

0 stars 0 forks source link

Create video thumbnails #17

Open rahulsushilsharma opened 1 year ago

rahulsushilsharma commented 1 year ago
ffmpeg -i input.mp4 -ss 00:00:05 -frames:v 1 thumbnail.jpg

This command creates a thumbnail image from a video file named input.mp4 at the 5-second mark (-ss 00:00:05 option) and saves it as a JPEG file named thumbnail.jpg.