Skip to content

Instantly share code, notes, and snippets.

View annsilin's full-sized avatar
🤠

Anna Silinskaya annsilin

🤠
View GitHub Profile
@matijagrcic
matijagrcic / Batch-convert-webp-to-png.txt
Created November 18, 2016 18:28
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"