shidarin / cdl_convert

Converts between common ASC Color Decision List (CDL) formats
Other
60 stars 17 forks source link

Allow multiple files and directory inputs #15

Open shidarin opened 10 years ago

shidarin commented 10 years ago

Allow input to be multiple files or a directory of files

skernster commented 3 years ago

Has there been any movement on this?

skernster commented 3 years ago

I created a batch command with a loop function to solve this issue.

@echo off if [%1]==[] goto :eof :loop "C:\Python27\python.exe" "cdl_convert.py" "%1" -o ccc shift if not [%1]==[] goto loop pause