extract image from video ffmpeg code example
Example 1: extract video frame using ffmpeg
ffmpeg -i "C:\Applications\FFMPEG\aa.mp4" "frames/out-%03d.jpg"
Example 2: ffmpeg extract thumbnail from video
ffmpeg -i input.flv -ss 00:00:14.435 -vframes 1 out.png