Created
March 20, 2011 16:56
-
-
Save fuba/878450 to your computer and use it in GitHub Desktop.
Revisions
-
fuba created this gist
Mar 20, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ #!/bin/sh # mpo2gif # convert a .mpo file to a animation gif. # this idea is from http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=16275 # this script requires exiftool and imagemagick. rjpg=/tmp/$$_r.jpg ljpg=/tmp/$$_l.jpg echo $1 gif=`basename $1 .MPO`.gif exiftool -trailer:all= $1 -o $rjpg exiftool $1 -mpimage2 -b > $ljpg convert -loop 0 -delay 5 $ljpg -delay 5 $rjpg $gif rm $rjpg $ljpg