I am using this command to extract a series of images from a video to express them as a visual time-frame of the video.
ffmpeg -i inputfile.mp4 -r 1 -t 12 image-%d.jpeg
Most of my videos are in mp4 format. I am able to extract the images successfully but the time taken for extraction is too long.
Is there any way I could reduce the time for image extraction ?
EDIT: It is taking me 60 secs to get 8 thumbnails from a 15 sec long video encoded in MP4 format, I am doing this operation on my Galaxy Nexus(Android Phone) is there any way to improve the speed of operation, ideally I want it be less than ~10secs.