Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 619 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 619 Bytes

timelapse-filter

  • php script hack for filtering jpeg photos for timelapse videos
  • currently filters for sunrise / sunset
  • accepts start end date or week of year
  • hardly depends on how photo files are named!

example

 ./jpg_filter.php /pool/images/camsev1 $(date +%Y%m%d) $(date +%Y%m%d) | ffmpeg -f image2pipe -r 9 -vcodec mjpeg -probesize 10M -i - -r 9 -q:v 2 -pix_fmt yuv420p -s hd480 -y /var/www/html/video/daily-$(date +%Y%m%d).mp4

calendar

todo

  • make it simpler and cleaner
  • maybe integrate ffmpeg somehow

USE AT YOUR OWN RISK!