Hi!
I convert all incoming image files to .JPG. IrfanView does a splendid job on anything; best program ever!
However, I do not want to convert animated .WEBP files. IrfanView converts them, but just a static image. My simple .CMD files essentially does the following:
for %%x in (*.jpeg) do ren %%x %%x.jpg
for %%x in (*.png) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.bmp) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.jfif) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.avif) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.webp) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg?
I tried to find a command line switch but no joy. Something like /skip-animated, which would apply to all the image formats that have animated versions as well as static.
Cheers!
I convert all incoming image files to .JPG. IrfanView does a splendid job on anything; best program ever!
However, I do not want to convert animated .WEBP files. IrfanView converts them, but just a static image. My simple .CMD files essentially does the following:
for %%x in (*.jpeg) do ren %%x %%x.jpg
for %%x in (*.png) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.bmp) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.jfif) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.avif) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg
for %%x in (*.webp) do "C:\Program Files\IrfanView\i_view64.exe" %%x /convert=%%x.jpg?
I tried to find a command line switch but no joy. Something like /skip-animated, which would apply to all the image formats that have animated versions as well as static.
Cheers!
Comment