ultramango / gear360pano

Simple script to create equirectangular panorama by stitching images from Samsung Gear 360
MIT License
225 stars 55 forks source link

Windows: Not processing multiple file parameters #26

Open neuhaus opened 7 years ago

neuhaus commented 7 years ago

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
ultramango commented 7 years ago

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.

ftoledo commented 7 years ago

maybe using a @list_of_files as parameter?

sechanbask commented 7 years ago

I have find a solution :

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

I think it must be added to the readme file