[nodes] KeyframeSelection: Add option to name the keyframes consecutively

By default, the keyframes' name is their index within the input sequence /
video. A new option is added to name them as consecutive frames, starting
from 0, instead.
This commit is contained in:
Candice Bentéjac 2023-02-07 11:34:50 +01:00
parent bdf13251a2
commit 808509fd7b

View file

@ -205,6 +205,15 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
)
]
),
desc.BoolParam(
name="renameKeyframes",
label="Rename Output Keyframes",
description="Instead of using the selected keyframes' index as their name, name them as consecutive output frames.\n"
"If the selected keyframes are at index [15, 294, 825], they will be written as [00000.exr, 00001.exr, 00002.exr] with this\n"
"option enabled instead of [00015.exr, 00294.exr, 00825.exr].",
value=False,
uid=[0]
),
desc.ChoiceParam(
name="outputExtension",
label="Keyframes File Extension",