Posts
Creating a timelapse with FFmpeg on macOS
Had to resort to using ffmpeg to create a timelapse because iMovie doesn’t let you do 4:3 movies for some reason, and I didn’t want to download a new video editor.
In a directory where the photos are named photo-00001.JPG to photo-00456.JPG (using macOS Finder’s batch renaming tool)
ffmpeg -f image2 -r 10 -i photo-%05d.JPG \ -c:v h264_videotoolbox -b:v 8500k \ -preset slowest -profile:v high \ -allow_sw 1 output.mp4 -r 10 tells it to use 10 images per second
read more
Posts
L'Infrastructure de Transcoding de Vimeo @ Paris Video Tech #19
VOD de mon intervention au meetup de décembre 2022 au Wagon.
Les slides (en anglais) : https://docs.google.com/presentation/d/1LpWj-WPPgPGKoxiYZ6inXrCdQCe9RoxHmaR_jSl_t4M/edit?usp=sharing
Le meetup en entier est disponible ici : https://www.youtube.com/watch?v=FJn7ZTRk060
read more