Hi,
I'm trying to make a proxy generator for a Davinci Resolve workflow. (As Blackmagicdesigns own proxy generator is far to unstable).
Is there any way for FFastrans to check if a proxy exist before encoding.
I generate the proxy in a "Proxy" folder next to the source material.
\footage\
\footage\RECORDNG001.MXF
\footage\RECORDNG002.MXF
\footage\Proxy\RECORDING001.mp4
\footage\Proxy\RECORDING002.mp4
I'm trying to figure out how to use "if exist", to check if %s_original_path%\Proxy\%s_original_name%.mp4 has been created before.
And if it does, do nothing, if not, make proxy.
Any tips?
Thanks.
Check if proxy exist, before encoding.
Re: Check if proxy exist, before encoding.
Hi Conniver,
you can make use of the Functions in a ConditionalNode:
check "Dispel Job..." so that if the File already exist, the Workflow will stop.
Also check out the Wiki for further information.
cheers,
thomas
you can make use of the Functions in a ConditionalNode:
Code: Select all
IF [$exists("%s_original_drive%\footage\Proxy\%s_original_name%.mp4")] equal to (=), string [0] then
Also check out the Wiki for further information.
cheers,
thomas
Re: Check if proxy exist, before encoding.
Perfect answer from ThomasM
Just adding 2 little things:
1) welcome to the forum and thank you for using FFAStrans Conniver, always good to have new faces here
2) checking "dispel" will not only stop the job, it will delete all logs, temp folders and job history entries for this job, so you will not see the failed job in status monitor.
Just adding 2 little things:
1) welcome to the forum and thank you for using FFAStrans Conniver, always good to have new faces here
2) checking "dispel" will not only stop the job, it will delete all logs, temp folders and job history entries for this job, so you will not see the failed job in status monitor.
emcodem, wrapping since 2009 you got the rhyme?
Re: Check if proxy exist, before encoding.
Thanks for the warm welcome and the tips, I'll try them shortly.
This software looks very promising for our use, although somewhat advanced.
This software looks very promising for our use, although somewhat advanced.
Re: Check if proxy exist, before encoding.
Thanks ThomasM and emcodem, this worked just like I needed.
Re: Check if proxy exist, before encoding.
Congrats for getting it working! Looking forward to any other stuff we can assist with
Next step for you, if you need it, you can execute some other processors in the case the file does not exist using the "error" path of the workflow as explained here:
viewtopic.php?f=5&t=849#p3582
Next step for you, if you need it, you can execute some other processors in the case the file does not exist using the "error" path of the workflow as explained here:
viewtopic.php?f=5&t=849#p3582
emcodem, wrapping since 2009 you got the rhyme?