Same method as the previous time lapse video i made, but now you can actually see things happening.
This is a time lapse video i made using my digital videocamera and Python, taking a picture every 5th second. It is quite boring so i had to add some music, Rob Costlow’s “Not Alone”
This is the Python script i used:
from VideoCapture import Device
from time import sleep
SecondsBetweenFrames = 5
FilePrefix = "bilde_"
DirectoryToStore = "E:\\Basen\\"
Kamera = Device()
FrameNr = 0
while True:
FrameNr = FrameNr + 1
Kamera.saveSnapshot(DirectoryToStore + FilePrefix + str(FrameNr) + '.jpg')
print "Lagret bilde: " + FilePrefix + str(FrameNr) + '.jpg'
sleep(SecondsBetweenFrames)
* You’ll need the VideoCapture and PIL Python extensions
Movie by tr0d