Created
May 26, 2022 21:49
-
-
Save fellipec/5d654dea6c2e0bf5c0f213fb51384605 to your computer and use it in GitHub Desktop.
I Hate WEBP
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
#!/bin/bash | |
for i in *.webp; do ffmpeg -i "$i" "${i%.webp}.jpg" ; done | |
for i in *.webm; do ffmpeg -i "$i" "${i%.webm}.mp4" ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment