Skip to content

gorlitzer/ESP32CamTimeLapse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

ESP32CamTimeLapse

Please visit https://bitluni.net/esp32camtimelapse for project information.

Create timelapse

ffmpeg -r 20 -f image2 -i pic%05d.jpg -vcodec libx264 -crf 10 -pix_fmt yuv420p lapse.mp4

The meaning of the parameters is:

-r frames per second in the final video -f image processor (ignore that) -i input files. %05d means if will fill in 00000 to 99999 there. (you can add the parameter -start_number 69 to start from 00069) -crf quality. lower is better. 10 is already like 80MBs for the highest resolution -pix_fmt sets the pixel format for mp4 (ignore that)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 63.3%
  • C++ 36.7%