Monday, 7. August 2006, 19:15:24
imagemagick, cli, scripts
mplayer -nosound -vo jpeg my_video_file.avi
montage *jpg join.jpg
montage.exe -tile 10x10 -geometry 160x84+2+2 -label '%f' 0000* join.jpg
mplayer -ss 1:00:23 -nosound -vo jpeg:outdir=foobar my_video_file.avi
Wednesday, 3. May 2006, 09:38:23
bash, cli, imagemagick, scripts
I know that I know nothing.
And I especially know that I always forget `imagemagick`s command line options :( So here is a tagged remedy:
for f in `ls *JPG`; do echo $f; convert -resize 800x800 $f $f; done
And to rename based on exif tags:
for f in `ls *.JPG`; do echo $f; create_date=""; create_date=`exiftime "$f" 2>&1 | grep -i image\ created | cut -d" " -f3 | sed -e 's/:/-/g'`;if [ "$create_date" != "" ];then echo $create_date;fi;done