Skip to content

Instantly share code, notes, and snippets.

@waldekmastykarz
Created December 21, 2020 14:33
Show Gist options
  • Select an option

  • Save waldekmastykarz/7dacfcb69a9d0fc7630880a28b5ffdf4 to your computer and use it in GitHub Desktop.

Select an option

Save waldekmastykarz/7dacfcb69a9d0fc7630880a28b5ffdf4 to your computer and use it in GitHub Desktop.
Convert multiple images to .webp
$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