ffmpeg grab single frame at 30 seconds


/ Published in: DOS Batch
Save to your folder(s)

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"


Copy this code and paste it in your HTML
  1. ffmpeg -ss 30 -vframes 1 -t 5 -i test.flv img_%RANDOM%_%d.jpg
  2. @rem -t 5 might not be needed
  3.  
  4. ffmpeg -ss 1.0 -i "IMG_0196.MOV" -frames 1 -f image2 "images/theImage_%6d.jpg"

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.