Changes between Version 3 and Version 4 of How to take multiple screenshots to an image (tile, mosaic)
- Timestamp:
- Apr 6, 2013, 3:19:56 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
How to take multiple screenshots to an image (tile, mosaic)
v3 v4 1 1 To make multiple screenshots and place them into a single image file (creating tiles), you can use FFmpeg's [http://ffmpeg.org/ffmpeg.html#tile tile video filter], like this: 2 2 {{{ 3 ffmpeg -ss 00:00:10 -i movie.avi - vf 'select=not(mod(n\,1000)),scale=320:240,tile=2x3' out.png3 ffmpeg -ss 00:00:10 -i movie.avi -frames 1 -vf 'select=not(mod(n\,1000)),scale=320:240,tile=2x3' out.png 4 4 }}} 5 5