alej0varas / flimeo

Timelapse video generator
0 stars 0 forks source link

Add image rotation #17

Open tatic0 opened 9 years ago

tatic0 commented 9 years ago

Add the capacity of rotating a range of images gradually to generate a "spin" on the video.

tatic0 commented 9 years ago

image magick allows to easily rotate an image, however, rotating changes the size and ffmpeg is not happy with it.

for i in {000..360}; do convert -resize 4082x3940 -rotate "$i" 20150415_001.jpg 20150415_001-$i.jpg; done

tatic0 commented 9 years ago

this one works for i in {000..360}; do convert -distort SRT -$i 20150415_001.jpg 20150415_001-$i.jpg; echo $i; done