All pastes #3186422 Raw Edit

alesan

public unlisted shellscript v1 · immutable
#3186422 ·published 2015-10-09 02:04 UTC
rendered paste body
for i in *.JPGdo        IFS=': '        set $(identify -format "%[EXIF:*]" "$i" | grep "exif:DateTimeOriginal" | cut -d "=" -f 2)        unset IFS        year=$1 month=$2 day=$3 hour=$4 minute=$5 second=$6        time="$1/$2/$3 $4:$5"        convert "$i" -resize "1920x1080!" -pointsize 50 -fill white -stroke black -draw "text 50,80 \"$time\"" -sampling-factor "4:2:0" yuv:-done | ffmpeg -f image2pipe -vcodec yuv4 -s 1920x1080 -r 25 -i - -vcodec libx264 -preset ultrafast -crf 22 -y video.mkv