lepton
lepton copied to clipboard
please add wildcard support for Windows
please add wildcard support for windows so that whole directories or many files at once can be processed. Using Drag & Drop a folder on the executables did not work.
Just use a batch script
here is a basic one that I am using
for /r %%i in (*.jpg *.jpeg) do (
lepton-slow-best-ratio.exe "%%i"&& (
del "%%i"
) || (
pause
)
)
PAUSE
If you don't want to delete the file, or don't care when it errors you can delete those lines from the batch script