Page 1 of 1

Running Complex filters from command-line

PostPosted: Mon Mar 09, 2020 2:36 am
by feelinLucky
Hi Stan,

Is there any way to run complex filters from a windows command line(batch)? Or is there a way to run complex filters where if they are loaded from a file to a main complex filter that the loaded filters run one at a time instead of concurrently.

Example:

Main Complex filter:Current way
sub1 complex filter(processing)
sub2 complex filter(processing)
sub3 complex filter(processing)

Main Complex filter:Desired way
sub1 complex filter(processing)
sub2 complex filter(Waiting for sub 1 process to complete)
sub3 complex filter(Waiting for sub 2 process to complete)


As it stands, I have to enable and disable each complex filter manually, which is quite a chore.

Any suggestions would be greatly appreciated.

Thanks