Skip to content

Instantly share code, notes, and snippets.

@KalenXI
Created September 17, 2023 13:34
Show Gist options
  • Save KalenXI/c767faca37890151ba8ad77564c2650f to your computer and use it in GitHub Desktop.
Save KalenXI/c767faca37890151ba8ad77564c2650f to your computer and use it in GitHub Desktop.
Encode Timelapse Video
#!/bin/bash
cd /home/kevin/traffic
date_dir=$(date +%F -d yesterday)
ffmpeg -framerate 25 -pattern_type glob -i '*.png' -c:v libx264 -crf 22 -y ${date_dir}.mp4
rm *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment