gear360pano icon indicating copy to clipboard operation
gear360pano copied to clipboard

Windows: Not processing multiple file parameters

Open neuhaus opened this issue 7 years ago • 3 comments

When I give multiple file parameters to the CMD script on Windows, it only looks at the first one.

Example:

gear360pano.cmd 360_1*.JPG 360_3*.JPG

neuhaus avatar Jun 12 '17 06:06 neuhaus

Currently this is by design, the second argument is the Hugin template that should be used. But it kind of make sens to move the template parameter away from positional arguments.

ultramango avatar Jun 12 '17 07:06 ultramango

maybe using a @list_of_files as parameter?

ftoledo avatar Jun 12 '17 18:06 ftoledo

I have find a solution :

For %%X in (*.JPG) do (gear360pano.cmd %%X)

I think it must be added to the readme file

sechanbask avatar Jul 14 '17 22:07 sechanbask