Here's the background so you'll understand what my goal is. We have several storage servers that we're trying to free up space on. Upon analysis on each server, the thing taking up the most space is usually jpgs. Employees upload images with whatever settings they were taken with. I've found that dropping the quality to 70% and resizing to 75% doesn't cause any quality loss but it reduces size by 90%. WIN!
What I need to do: find all the jpgs in a directory that has 100s of subfolders and then resize/quality and rename the file (append something to show it's been resized, like _rz) for each one. I'm pretty much almost there I think.
I'm doing dir *.jpg /b /s >> jpglist.txt to get my list. It looks like this:
C:\1tmp\pics\Joffrey\Pictures\2008\Finning BFP_5.JPG
C:\1tmp\pics\Joffrey\Pictures\2008\Finning BFP_6.JPG
C:\1tmp\pics\Joffrey\Pictures\2008\Finning BFP_7.JPG
Here's the command I'm trying to use
i_view32.exe /filelist=c:\1tmp\jpglist.txt /resize=(75p,75p) /jpgq=70
It run's but it doesn't seem to be changing the files... the process just keeps running in the background.
HELP!
What I need to do: find all the jpgs in a directory that has 100s of subfolders and then resize/quality and rename the file (append something to show it's been resized, like _rz) for each one. I'm pretty much almost there I think.
I'm doing dir *.jpg /b /s >> jpglist.txt to get my list. It looks like this:
C:\1tmp\pics\Joffrey\Pictures\2008\Finning BFP_5.JPG
C:\1tmp\pics\Joffrey\Pictures\2008\Finning BFP_6.JPG
C:\1tmp\pics\Joffrey\Pictures\2008\Finning BFP_7.JPG
Here's the command I'm trying to use
i_view32.exe /filelist=c:\1tmp\jpglist.txt /resize=(75p,75p) /jpgq=70
It run's but it doesn't seem to be changing the files... the process just keeps running in the background.
HELP!
Comment