Skip to content

Instantly share code, notes, and snippets.

@fellipec
Created May 26, 2022 21:49
Show Gist options
  • Save fellipec/5d654dea6c2e0bf5c0f213fb51384605 to your computer and use it in GitHub Desktop.
Save fellipec/5d654dea6c2e0bf5c0f213fb51384605 to your computer and use it in GitHub Desktop.
I Hate WEBP
#!/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