5

I would like to take a screenshot, every minute, of my screen, to create a time lapse video of my programming a game.

I found CamStudio, but it doesn't seem to have the option to simply save screenshots, not video.

Any ideas ?

I need a tool that would take a screenshot of the whole screen every minute, and automaticly save it somewhere.

HackToHell
  • 6,408
Manu
  • 3,050

3 Answers3

6

There are several applications out there that does automatic screen captures, AutoScreenShot is one example.

Then when you have the images making a movie out of them is not that hard.

Making movies from image files using ffmpeg/mencoder

Short version:

We can also use ffmpeg directly to encode the images files into a movie. If we start with files name 001.jpg, 002.jpg, ..., we can use:
ffmpeg -r 10 -b 1800 -i %03d.jpg test1800.mp4

Nifle
  • 34,998
5

I came across a program Chronolapse, which might be useful for this :

http://code.google.com/p/chronolapse/

I didn't use it much myself, but it seems like it would do what you need, and it's free.

camster342
  • 1,797
0

Use a cron job or shell script to take screenshots and then compile them into a movie file as Nifle suggested. Could possibly use this as a shell script:

while true; do scrot -d 60; done

I'm not good at shell so someone could improve this

Jonno_FTW
  • 1,590