Created
February 12, 2024 21:49
-
-
Save fabiorzfreitas/2474e0be3ad2cb510adf71fd38342cd7 to your computer and use it in GitHub Desktop.
Creates 3x3 thumbnails preview
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
( | |
for %%f in ( | |
*.mp4 *.mkv *.mov *.3gp | |
) do ( | |
for /f %%g in ( | |
'ffprobe -v error -select_streams v:0 -count_packets -show_entries stream^=nb_read_packets -of default^=nk^=1:nw^=1 "%%f"' | |
) do ( | |
ffmpeg -y -i "%%f" -filter_complex "select='not(mod(n,floor(%%g/9)))',tile=layout=3x3" -update 1 -frames:v 1 "%%f.png" | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment