<span class="mw-page-title-namespace">Blog</span><span class="mw-page-title-separator">:</span><span class="mw-page-title-main">Hacks/Batch processing of images for timelapsing them</span>
Fabrice P. Lauss𝕪s ombifying Web

Batch processing of images for timelapsing them

From laussy.org's Blog about Hacks.
Published: Not published.

Basic and typical batch operations to carry out on still frames before rendering them into a movie:

First, I keep (here) the upper 84% part, to crop an uninteresting bottom part:

convert imageSequence00000079.jpg -crop 100%x84%+0+0 cropped-imageSequence00000079.jpg

Then I highlight the colors with aaphoto:

for f in *.jpg; do aaphoto -a --overwrite "$f"; done