Log in

View Full Version : Research Question on Screenshots


ananth
14th January 2009, 21:46
I didn't know where to post it, so I am posting it here. I apologize if this has been answered in one of the faq's, but I couldn't find it anywhere.

I am doing a research project where I need to capture frames from a 10 second avi movie. I need it to spit out 11 screenshots at 1 second interval. Is there a program that can automate this process? We have approximately 60 videos, so going through each seems to be a nightmare. Appreciate any assistance. Thanks.
- ananth

Video Dude
14th January 2009, 22:39
You could track down an old copy of TMPGEnc 2.5.

Load the avi, set the output resolution, set the fps to 1 frame per second. Then select the output to "Sequence BMP/PPM/TGA/JPG file".

TMPGEnc has batch processing.




EDIT: VLC, MPC, and FFDShow (Grab setting) can also do screenshots.

dat720
15th January 2009, 00:12
mplayer can do a series of scrrenshots like that aswell

mel2000
28th January 2009, 23:22
Free Video to JPG Converter can do snapshots in series.
OS: Win 98/ME/2000/XP/2003/Vista
http://www.dvdvideosoft.com/guides/dvd/make-video-snapshots.htm

Sagekilla
30th January 2009, 15:34
Avisynth can do this too ;) Load up each image, play it back in WMP / MPC / VDM / etc

Avisource("MyFile.avi")
fps = int(FrameRate())
ConditionalFilter(last,ImageWriter("image_%4d"), last, "current_frame", "%", string(fps))
Crop(0,0,16,16) # faster processing