Last active
November 5, 2024 21:52
-
-
Save cccaaannn/cfc6b42562feba146270891a3617b6f5 to your computer and use it in GitHub Desktop.
webp to png all folder
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 file in *.webp; do ffmpeg -i "$file" "out/$(basename "${file%.webp}.png")"; done | |
| # mkdir -p out && for file in *.webp; do ffmpeg -i "$file" "out/$(basename "${file%.webp}.png")"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment