hi sorry to bother … i want to diagnose a similar problem and i was wondering how did you made the movie
@Thomas_Sanladerer To build a timelapse from a bunch of jpegs on linux, it’s only one line 
mencoder mf://.JPG -ovc lavc -o movie.avi
And then, true, there are just too many weird options if you really want to 
BTW to re-index numbered images, so they have non-significant leading zeroes:
for f in .jpg; do mv “$f” /tmp/$(printf “%05d” ${f//[!0-9]/}).jpeg; done
Linux rulezz 
@Jeremie_Francois i’d bet figuring out those exact commands took you longer than the time i spent doing it with a UI 
@Thomas_Sanladerer nope, but I practiced every days for the last 15 years: “unix is trivial once you know the thousand basic commands”
And I certainly prefer linux to Premiere Pro if we speak of OSes
(comes from “emacs is cool, but I prefer linux as an OS”)
Vi! vi! vi! 