I extract thumbnails from a .MOV
file using FFMPEG on Linus (Debian 64bit).
The file I extract the thumbnail from is about 430 Megabytes large.
I use the following command to do so:
ffmpeg -i 'largeVideoFile.mov' -ss 00:14:37 -vframes 1 'thumbnail.jpg'
It takes well over 3 minutes for a single frame to be extracted.
How can I speed it up?