froscon stuff

This commit is contained in:
Lukas Schauer 2023-07-29 14:55:17 +02:00
parent 082a4f359f
commit 9fc1a85066
No known key found for this signature in database
GPG key ID: 9C4DBE6CF438F333
18 changed files with 4912 additions and 24 deletions

9
froscon2023/genthumbs.sh Executable file
View file

@ -0,0 +1,9 @@
#!/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