/ Published in: DOS Batch
Just tested on my mac and this is what worked to grab a single frame at the 1.0 second mark
ffmpeg -ss 1.0 -i "IMG_0196.MOV" -frames 1 -f image2 "images/theImage_%6d.jpg"
ffmpeg -ss 1.0 -i "IMG_0196.MOV" -frames 1 -f image2 "images/theImage_%6d.jpg"
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
ffmpeg -ss 30 -vframes 1 -t 5 -i test.flv img_%RANDOM%_%d.jpg @rem -t 5 might not be needed ffmpeg -ss 1.0 -i "IMG_0196.MOV" -frames 1 -f image2 "images/theImage_%6d.jpg"