pope (owner)

Fork Of

Revisions

gist: 171368 Download_button fork
public
Public Clone URL: git://gist.github.com/171368.git
Embed All Files: show embed
time_lapse.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
# requires "isightcapture" in the cwd (http://www.intergalactic.de/pages/iSight.html)
 
require "eventmachine"
INTERVAL = 20
 
EM::run do
  timer = EM::PeriodicTimer.new(INTERVAL) do
    time = Time.now.strftime("%Y%m%d%H%M%S")
    system "./isightcapture #{time}.jpg &"
    puts time
  end
end