Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UnXman/fc0208cd4baabd839caea0ef3d27b4ca to your computer and use it in GitHub Desktop.
Save UnXman/fc0208cd4baabd839caea0ef3d27b4ca to your computer and use it in GitHub Desktop.
Batch convert webp to png
#Download dwebp (WebP decoder tool) https://developers.google.com/speed/webp/download
#Run
for %f in (*.webp) do dwebp.exe "%f" -o "%~nf.png"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment