Renumbering files
Posted: Mon Mar 27, 2017 8:37 pm
The following option was recently added to NConvert to enable files to be renumbered:
If I use the following code to renumber four input files 01L 01R 02L 02R :
Expected result: the files are renumbered to 001 002 003 004
Actual result:
Each input file is renumbered four times instead of once...
Am I misunderstanding the intended use of the option, or is this a bug?
Code: Select all
-n start end step : Begin End Step (for image sequence)
Code: Select all
nconvert -n 1 4 1 -out jpeg -o Output\###.jpg Input\*.jpg
Actual result:
Code: Select all
Conversion of Input\01L.jpg into Output\001.jpg OK
Conversion of Input\01L.jpg into Output\002.jpg OK
Conversion of Input\01L.jpg into Output\003.jpg OK
Conversion of Input\01L.jpg into Output\004.jpg OK
Conversion of Input\01R.jpg into Output\001_1.jpg OK
Conversion of Input\01R.jpg into Output\002_1.jpg OK
Conversion of Input\01R.jpg into Output\003_1.jpg OK
Conversion of Input\01R.jpg into Output\004_1.jpg OK
Conversion of Input\02L.jpg into Output\001_2.jpg OK
Conversion of Input\02L.jpg into Output\002_2.jpg OK
Conversion of Input\02L.jpg into Output\003_2.jpg OK
Conversion of Input\02L.jpg into Output\004_2.jpg OK
Conversion of Input\02R.jpg into Output\001_3.jpg OK
Conversion of Input\02R.jpg into Output\002_3.jpg OK
Conversion of Input\02R.jpg into Output\003_3.jpg OK
Conversion of Input\02R.jpg into Output\004_3.jpg OK
Am I misunderstanding the intended use of the option, or is this a bug?