Created
March 20, 2011 16:56
-
-
Save fuba/878450 to your computer and use it in GitHub Desktop.
convert a .mpo file to an animation gif
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 characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment