Face Time-lapse

[ analysis-recipe ]

Make a time-lapse video out of daily pictures of your face.

ifttt recipe

ifttt camera widget -> google drive

solution

  1. get all the images from google drive onto your laptop, stored in a directory named 2017/
  2. use ffmpeg to stitch the images together into a video:
ffmpeg \
  -framerate 12 \
  -pattern_type glob \
  -i '2017/*.jpg' \
  -c:v libx264 \
  -vf "transpose=1" \
  -pix_fmt yuv420p \
  2017.mp4

notes

Updated At: 2024-03-16 16:07 +0000 (2d53252)

🛠 by Tom Hummel