Since webp came out I've been using a clumsy method to convert the files to png format, one at a time. I always have to manually rename them. I do all this inside of the Worker filemanager where I have a button setup with the following command:
Code: Select all
dwebp {f} -o output.png
Now I found some info on the web, & the following command line, which uses the Parallel software package (for speed), & gives me the output <NO name>.png
Code: Select all
parallel dwebp {} -o {.}.png ::: *.webp
That would be SO helpful. :)
Also, I have this string which is supposed to do the content of nested sub-directories, though I think it is likely not correct either:
Code: Select all
find . -name "*.jpg" -print0 | parallel -0 dwebp {} -o {.}.png