This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| # Script to generate thumbnails of a video and combine into one tile image. | |
| # | |
| # CAUTION: | |
| # FFprobe might fail to extract duration info from a MKV container. Use | |
| # ffmpeg -i video.mkv -c:v copy -c:a copy video.mp4 | |
| # to swap to an MP4 container. | |
| # | |
| # Dependencies: | |
| # 1. ffmpeg |