Played a bit around with creating some time lapse shots with my Logitech C300 webcam, results are below. uvcdynctrl --set "Exposure, Auto" 3 uvcdynctrl --set "Exposure, Auto Priority" 1 uvccapture -m -w -x1280 -y1024 -q80 -t10 -o/tmp/webcam-temp.jpg -c/home/ingo/bin/webcam-move.sh $ cat /home/ingo/bin/webcam-move.sh #!/bin/sh if [ ! $# -eq 1 ]; then echo "Usage: $0 FILENAME" exit 1 else FINAL="/home/ingo/screenshots/webcam-$(date +"%F-T%T").jpg" mv "$1" "$FINAL" echo "Moved $1 to ${FINAL}" exit 0 fi mplayer mf://webcam*.jpg -fps 30 -vf crop=1280:720:0:200 More
2010-07-01