## [[PowerShell]] in [[Windows]] ```powershell Get-ChildItem *.png | ForEach-Object { ffmpeg -i $_.FullName ($_.BaseName + ".webp") } ```