Magic Lantern Forum

Showcasing Magic Lantern => Share Your Videos => Topic started by: kitor on January 01, 2017, 02:00:22 PM

Title: Happy New Year! Timelapse from Wroclaw, Poland on 5D Classic
Post by: kitor on January 01, 2017, 02:00:22 PM
Shot on 5D Classic with 28-135 1:3.5-5.6 IS USM @44mm f/5.6
ISO 800, 2s exposure.
Colors corrected a bit in Lightroom, then exif-based time overlay added using some magic in ImageMagick ( ;) )*
Unfortunately not 4K as Sony Movie Studio 12 can't go above 1080p.

Proves that 5D classic is still capable for this kind of usage  :)



*code if anyone would like to use it:
for f in *.tif; do
date=$(identify -format "%[EXIF:DateTimeOriginal]" $f 2>/dev/null)
echo $date
convert -size 500x56 xc:none -font DejaVu-Sans-Mono-Book -pointsize 44 -gravity southeast \
-stroke black -strokewidth 1 -annotate 0 "$date" \
-stroke none -fill \#999 -annotate 0 "$date" \
$f +swap -geometry +9+9 \
-composite comp/$f
done