Advertisement
SantiCastillo

Untitled

Feb 12th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.42 KB | None | 0 0
  1. @echo off
  2. setlocal EnableDelayedExpansion
  3.  
  4. set "logfile=compresion.log"
  5. set "directori=C:\Users\SantiagoC\Pictures\FOTOS_ESTELA\Retocadas\Esculturas"
  6. set "extensio=jpg"
  7. set "compresio=mogrify -quality 90 -interlace PLANE -sampling-factor 4:2:0 -compress JPEG2000 -colorspace RGB"
  8.  
  9. (call :log)>>%logfile%
  10. exit /B
  11. :log
  12. for /R %directori% %%A in (*.%extensio%) do (
  13.     %compresio% "%%~A"
  14.     echo !date! %%A !time!
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement