Skip to content

Instantly share code, notes, and snippets.

@thinsoldier
Created March 23, 2021 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thinsoldier/7dcd129e31ff46553f734f4bcd1e7148 to your computer and use it in GitHub Desktop.
Save thinsoldier/7dcd129e31ff46553f734f4bcd1e7148 to your computer and use it in GitHub Desktop.
convert .webp to .jpg with ffmpeg
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