To make multiple screenshots and place them into a single image file (creating tiles), you can use FFmpeg's tile video filter, like this:
ffmpeg -ss 00:00:10 -i movie.avi -frames 1 -vf "select=not(mod(n\,1000)),scale=320:240,tile=2x3" out.png
That will seek 10 seconds into the movie, select every 1000th frame, scale it to 320x240 pixels and create 2x3 tiles in the output image out.png, which will look like this:
'Programming > Bash' 카테고리의 다른 글
if you want to split a large csv file into several smaller ones, just use 'split' in shell. (0) | 2017.05.23 |
---|---|
관리자권한으로 cron 설정하기. It's easy to use. (0) | 2016.06.10 |
How to check the length of a media file on bash - bash 를 이용한 동영상 파일 길이 알아내기. (0) | 2016.03.28 |
나만의 유튜브 영상 다운로더 by using bash (0) | 2016.01.10 |
[BASH] 기본 BASH 업그레이드 및 활용하기 (1) | 2015.11.11 |