Changes between Version 4 and Version 5 of Create a video slideshow from images
- Timestamp:
- 03/04/2013 01:10:11 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Create a video slideshow from images
v4 v5 16 16 }}} 17 17 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 `%`: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 (`*` represents any number of any characters): 19 19 {{{ 20 20 ffmpeg -f image2 -r 1 -pattern_type glob -i '*.jpg' -c:v libx264 out.mp4 … … 25 25 }}} 26 26 27 That will read all the jpg/png images in the current directory and write them, one by one, using the pipe, to the ffmpeg's input, which will produce the video out of it.28 27 29 28 '''Important:'''


