Month: May 2013

  • Making a time-lapse in Debian

    by

    in

    Make a script like this called “save”. Make it executable. #!/bin/sh ct=0 if [ -f “ct” ]; then ct=`cat ct` fi ct=`expr $ct + 1` mv snap.jpg snap-$ct.jpg echo $ct > ct Run “uvccapture -x648 -y480 -c./save -t20” to take a photo every 20 seconds. Then you can use a script like this to continually…