Changes between Version 3 and Version 4 of Create a video slideshow from images
- Timestamp:
- 03/04/2013 01:09:14 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Create a video slideshow from images
v3 v4 18 18 If you don't have images numbered and ordered in series (img001.jpg, img002.jpg, img003.jpg) but rather random bunch of images, ffmpeg also supports bash-style globbing - though glod wildcards (such as `?`, representing a single random character, and `*` representing any number of random characters) have to be prefixed with a `%`: 19 19 {{{ 20 ffmpeg -f image2 -r 1 - i %*.jpg-c:v libx264 out.mp420 ffmpeg -f image2 -r 1 -pattern_type glob -i '*.jpg' -c:v libx264 out.mp4 21 21 }}} 22 22 or for png images: 23 23 {{{ 24 ffmpeg -f image2 -r 1 - i %*.png-c:v libx264 out.mp424 ffmpeg -f image2 -r 1 -pattern_type glob -i '*.png' -c:v libx264 out.mp4 25 25 }}} 26 26


