I'm trying to put together a command that specifies:
- Quality 60
- Method=6
Code: Select all
D:\...\convert.exe "2017-01-13 00-22-33.515.jpg" -quality 65 method 6 image_out.webp
I also tried with "="convert.exe: UnableToOpenBlob 'method': No such file or directory @ error/blob.c
/OpenBlob/2691.
convert.exe: NoDecodeDelegateForThisImageFormat `' @ error/constitute.c/ReadImag
e/509.
convert.exe: UnableToOpenBlob '1': No such file or directory @ error/blob.c/Open
Blob/2691.
convert.exe: NoDecodeDelegateForThisImageFormat `' @ error/constitute.c/ReadImag
e/509.
Code: Select all
D:\...\convert.exe "2017-01-13 00-22-33.515.jpg" -quality 65 method=6 image_out.webp
I know that the command doesn't work because when changing number behind "method" to 1, Convert throws a file with identical size.
I have read this documentation about converting to webp
https://www.imagemagick.org/script/webp.php
but it doesn't provide answer on syntax to get the other options to work.
Please provide a working command example, so I can make it work.
Thanks in advance.