Created
April 11, 2019 08:51
-
-
Save kiyoaki/e3412578ea5f4d15ac551da104d97f7c to your computer and use it in GitHub Desktop.
webp generator bat file for windows
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
@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