This is not official documentation, but rather a scratch-pad of ideas. Visit https://flamenco.blender.org/ for the docs.
To determine the render output location, some components need to be concatenated to form a path.
It is important for Flamenco Manager to know the exact file paths that will be written, at least down to a pattern like /some/path/to/*.png
. That way it can do things like automatically creating a preview video from rendered frames.
These are some possible ingredients to concatenate into an output path:
{DIR}
{prefix}
{ext}
{Scene}
{Job}
{SEQ:n}
n
-digits, so {SEQ:3}
is 000
-999
, {SEQ:2}
is 00
-99
, etc.{YYYY-MM-DD-HHMMSS.nnnn}
{YYYY-MM-DD-HHMM}
{SEQ}
to be unique.{UUID}
ce30617e-e862-40c2-8d47-821293f8ab00
). It has no value for humans, but it is the identifier that can be used to look up the job in the Manager's database.######
######.png
would put frame 47 in 000047.png
.For these, the artist only chooses {DIR}
. The rest is auto-generated:
{DIR}/{Job}/{YYYY-MM-DD-HHMMSS.nnnn}/######.{ext}
{DIR}/{Job}/{YYYY-MM-DD-HHMM}-{SEQ:2}/######.{ext}
{DIR}/{Job}-{YYYY-MM-DD-HHMM}-{SEQ:2}/######.{ext}