Skip to content

Instantly share code, notes, and snippets.

@shokai
Last active December 24, 2015 15:39
Show Gist options
  • Save shokai/6821474 to your computer and use it in GitHub Desktop.
Save shokai/6821474 to your computer and use it in GitHub Desktop.
gifsnap webcamからアニメgif生成 事前に brew install imagesnap imagemagick が必要
*~
*#*
.DS_Store

gifsnap

Dependencies

Install Dependencies

% brew install imagesnap imagemagick

Run

% gifsnap

=> 1387328918.gif

% gifsnap out.gif

=> out.gif

#!/bin/sh
if test $1 ; then
OUT_FNAME=$1
else
OUT_FNAME=`date +%s`.gif
fi
rm -f /tmp/gifsnap_*.gif
imagesnap -w 2.0 /tmp/gifsnap_01.gif
imagesnap -w 2.0 /tmp/gifsnap_02.gif
imagesnap -w 2.0 /tmp/gifsnap_03.gif
convert -delay 8 -loop 0 -geometry 240x /tmp/gifsnap_*.gif $OUT_FNAME
rm -f /tmp/gifsnap_*.gif
echo "=> $OUT_FNAME"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment