intro-outro-generator/froscon2023/genthumbs.sh
2023-07-29 14:55:17 +02:00

9 lines
172 B
Bash
Executable file

#!/bin/bash
rm -rf thumbs
mkdir thumbs
for intro in *.ts; do
echo $intro
ffmpeg -hide_banner -loglevel quiet -ss 4 -i "${intro}" -frames:v 1 "thumbs/${intro}.png"
done