Created
December 21, 2020 14:33
-
-
Save waldekmastykarz/7dacfcb69a9d0fc7630880a28b5ffdf4 to your computer and use it in GitHub Desktop.
Convert multiple images to .webp
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
| $now = Get-Date | |
| Get-ChildItem | ? { | |
| ($now - $_.LastWriteTime).totalhours -le 1 | |
| } | % { | |
| cwebp $_.Name -o $($_.BaseName+".webp") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment