====== Differences ====== This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Last revision Both sides next revision
peripherals:camera:timelapse [2017/03/01 18:12]
admin [Convert / Modify images before combining]
peripherals:camera:timelapse [2017/03/01 18:19]
admin [Convert / Modify images before combining]
Line 334: Line 334:
 Here is how to **batch convert multiple files** at once: Here is how to **batch convert multiple files** at once:
 <​Code:​bash|Multiple files conversion>​ <​Code:​bash|Multiple files conversion>​
-> for f in my_originals/​*.jpg ; do convert "​$f"​ -colorspace Gray -normalize "​my_converted/$f" ; done+> for f in my_originals/​*.jpg ; do convert "​$f"​ -colorspace Gray -normalize "​my_converted${f%my_originals}" ; done
 </​Code>​ </​Code>​
 +
 +Another interesting usage of ImageMagick here would be to "water mark" all images before integrating them into the movie, your timelapses can be "​signed"​ using this method.
 ==== MP4 Optimization for Web Streaming ==== ==== MP4 Optimization for Web Streaming ====
 ---- ----