#Stop Motion
Did this using the Acer laptop webcam using Ubuntu
Install stuff we need
sudo apt-get install cheese streamer avconcmake a directory for the files
cd ~/Downloads/
mkdir cap
cd cap/check out the webcam
cheesedo the time-lapse capture
streamer -o 0000.jpeg -s 300x200 -j 100 -t 2000 -r 1filter out bad shots, etc
shotwellrename and move to temp
i=0; for file in ~/Downloads/cap/*.jpeg; do cp $file /tmp/photo$i.jpg; i=$((i+1)); donedo video encoding
avconv -i /tmp/photo%d.jpg -r 24 video.mp4clean up
rm *.jpeg
rm /tmp/photo*.jpg
mv video.mp4 ..
cd ..
rm cap