Created
March 23, 2021 05:11
-
-
Save thinsoldier/7dcd129e31ff46553f734f4bcd1e7148 to your computer and use it in GitHub Desktop.
convert .webp to .jpg with ffmpeg
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 x in ls *.webp; do ffmpeg -i "$x" "${x%.webp}.jpg"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment