HomeConvert all PNGs in a folder to WEBP with FFmpeg

Convert all PNGs in a folder to WEBP with FFmpeg

Published: 1/19/2023

FFmpeg is an awesome tool that can convert not only videos but also audio and images.

On Linux and Mac, run it like this in the folder where you want the conversion to run:

for i in *.png; do ffmpeg -y -i "$i" -c:v libwebp "${i%.*}.webp"; done

On Windows:

FOR /F "tokens=*" %G IN ('dir /b *.png') DO ffmpeg -y -i "%G" -c:v libwebp "%~nG.webp"

Resources:

About Code with Node.js

This is a personal blog and reference point of a Node.js developer.

I write and explain how different Node and JavaScript aspects work, as well as research popular and cool packages, and of course fail time to time.