Skip to content

Instantly share code, notes, and snippets.

@thbounzer
Created October 21, 2013 09:35
Show Gist options
  • Save thbounzer/7081156 to your computer and use it in GitHub Desktop.
Save thbounzer/7081156 to your computer and use it in GitHub Desktop.
Daily webcam snapper
#!/bin/sh
mplayer tv:// -tv driver=v4l2:device=/dev/video0 -vo png:outdir=/out/dir/temp -flip -frames 40
name=$(date +%Y-%m-%d)
mv /out/dir/temp/00000040.png /out/dir/$name.png
rm /out/dir/temp/000000*.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment