mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-25 20:47:39 +02:00
[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:
parent
bdf13251a2
commit
808509fd7b
1 changed files with 9 additions and 0 deletions
|
@ -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(
|
desc.ChoiceParam(
|
||||||
name="outputExtension",
|
name="outputExtension",
|
||||||
label="Keyframes File Extension",
|
label="Keyframes File Extension",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue