Skip to content

Instantly share code, notes, and snippets.

@Oldes
Created January 6, 2021 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oldes/8176e4a28aedbf18f92ba49369feabd1 to your computer and use it in GitHub Desktop.
Save Oldes/8176e4a28aedbf18f92ba49369feabd1 to your computer and use it in GitHub Desktop.
Making timelaps webp or gif anim
Rebol [
purpose: {notes how to make timelaps animation}
]
;- OpenCV's stitching_detailed.exe to prepare timelaps images
cmd {stitching_detailed --try_cuda yes --warp transverseMercator --timelapse crop 01.jpg 02.jpg}
;- https://developers.google.com/speed/webp/download
cmd {img2webp -lossy -d 300 fixed_01.jpg fixed_02.jpg -o out.webp}
;- or gif using imagemagick
cmd {convert -delay 30 -loop 0 fixed_01.jpg fixed_02.jpg -scale 2048x out.gif}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment