Thursday, April 8, 2021

Using ffmpeg to batch convert images from webp to png

for i in *.webp; do ffmpeg -i "$i" "${i%.*}.png"; done

No comments:

Post a Comment