FFMPEG : Quick & Useful
We will write down here some quick and useful tips that people working with video might frequently use… #1-Extracting video frames ffmpeg -y -i M2U00008.MPG -vframes 10 -ss 00:00:10 -vcodec png -f image2 -s 320×240 x%03d.png The “-vframes 10” tells ffmpeg to extract the 10 first video frames of the input file. “-ss 00:00:10” tells
Read more →