Skip to content

Instantly share code, notes, and snippets.

@kiyoaki
Created April 11, 2019 08:51
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 kiyoaki/e3412578ea5f4d15ac551da104d97f7c to your computer and use it in GitHub Desktop.
Save kiyoaki/e3412578ea5f4d15ac551da104d97f7c to your computer and use it in GitHub Desktop.
webp generator bat file for windows
@echo off
for /f "delims=" %%i in ('dir /a-d/b/s *.png *.jpg') do cwebp -q 80 "%%i" -o "%%~pi%%~ni.webp"
pause >nul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment