Page 1 of 1

Command executor output to delivery folder

Posted: Thu Jul 23, 2020 2:30 pm
by llittleton
Hi,

I am using a command executor to do a gpu conversion:

%comspec% /c "D:\NVEncC_5.11_x64\NVEncC64.exe -i "%s_source%" --vpp-select-every 2 --fps 60000/1001 -c hevc --cbr 20000 --cu-max 32 --bframes 0 --ref 4 --gop-len 30 --lookahead 15 --strict-gop --profile main10 --output-depth 10 --audio-codec aac --vpp-edgelevel --vpp-deband --video-tag hvc1 --cuda-schedule auto -o "%s_original_path%\%s_original_name%_NVEncC_UHD.mp4""

Is there a way to have to output go to a delivery folder instead?

Thank you,

Lawrence

Re: Command executor output to delivery folder

Posted: Thu Jul 23, 2020 6:36 pm
by emcodem
hey Lawrence,

sure you can do this, it depends a little if you need to calculate your delivery folder or it is always the same,
e.g. change this
"%s_original_path%\%s_original_name%_NVEncC_UHD.mp4"

to this:

"\\server\share\folder\%s_original_name%_NVEncC_UHD.mp4"

Re: Command executor output to delivery folder

Posted: Sun Jul 26, 2020 5:40 pm
by llittleton
emcodem,

Thank you for your reply. What i mean is can i take the output of a command execute node and pipe it into a delivery folder node, and then use the delivery folder node to specify the location and name of the output file?

Thank you,

Lawrence

Re: Command executor output to delivery folder

Posted: Sun Jul 26, 2020 8:36 pm
by emcodem
Understood, so what you do in this case is in the command executor node, check the "set %s_sourcce%" checkbox and enter the name of the produced file, e.g. just this:

Code: Select all

%s_original_path%\%s_original_name%_NVEncC_UHD.mp4
This checkbox will tell the "delivery" (and all other subsequent nodes) that they shallw work with the provided file name

Re: Command executor output to delivery folder

Posted: Sat Nov 21, 2020 8:13 pm
by llittleton
emcodem,

this solution works perfectly.

thank you.

Re: Command executor output to delivery folder

Posted: Sun Nov 22, 2020 10:35 pm
by emcodem
So nice for stepping by and saying thanks, really appreciated!