Created
May 19, 2022 04:52
-
-
Save ilovefreesw/cf66d97e56d2a7081d95a85715c46172 to your computer and use it in GitHub Desktop.
Here is a batch script to bulk split GIF files into their corresponding frames in JPG format. Based on FFmpeg. So make sure that FFmpeg command is available.
This file contains 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
forfiles /s /m *.gif /c "cmd /c mkdir @FNAME && ffmpeg -i "@FILE" @FNAME/output_%%04d.jpg" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment