Page 1 of 1

COMMAND LINE

Posted: Sun Mar 10, 2019 12:12 am
by backlight
Hi guys,
Im creating a lot of worklfows and i'm testing the incredible possibility given by the steinar software.

I encode and decode DCP uscing EasyDCP that is easy scriptable. I tested this script many times in che CMD of windows and works
perfectly but it gives me an error on command executor

this is the script

%comspec% /c "C:/Programmi/Fraunhofer IIS/easyDCP Player+ 3.5.8/bin/easyDCP Player+.com" "%s_original_full%" -o "S:\OUTPUT_FOLDER" -t Sequence -from 0 -to 1450 -p "OUTPUT_FILE" -v QuickTime -fourcc apch -bps 8 -ct "X'Y'Z' -> R'G'B' (P3)" -c left -scaleX 1920 -scaleY 1080 -a QuickTime -audiofourcc lpcm

I tested all the options and i found that the problem is on this string [ -ct "X'Y'Z' -> R'G'B' (P3)" ] if i remove... it works perfectly (but withot color transofrmation)

Re: COMMAND LINE

Posted: Sun Mar 10, 2019 8:47 am
by admin
Hi backlight

You must remember to always quote-wrap your complete command started using comspec:

%comspec% /c ""C:\Programmi\Fraun....... -audiofourcc lpcm"

Try this and tell me how it works out.

-steinar

Re: COMMAND LINE

Posted: Sun Mar 10, 2019 12:02 pm
by backlight
Works perfectly!!!

Thank you!