Counter + .JPG resize conversion
Posted: 2011-08-10T18:58:49-07:00
counter=1000
for f in IMG*.JPG; do
> counter=counter+1
> echo $counter
> small${counter:1}.JPG
> done
I have a series of images I'm trying to resize. Should I being using convert and ffmeg to downsize the files and ultimately make a movie from the .JPGs
for f in IMG*.JPG; do
> counter=counter+1
> echo $counter
> small${counter:1}.JPG
> done
I have a series of images I'm trying to resize. Should I being using convert and ffmeg to downsize the files and ultimately make a movie from the .JPGs