mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-30 14:58:37 +02:00
Merge pull request #2036 from alicevision/dev/noKeyframeExport
KeyframeSelection: Add new parameter value to disable the export of keyframes
This commit is contained in:
commit
349f488fbd
2 changed files with 7 additions and 4 deletions
|
@ -259,14 +259,17 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
|
|||
"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,
|
||||
enabled=lambda node: node.outputExtension.value != "none",
|
||||
uid=[0]
|
||||
),
|
||||
desc.ChoiceParam(
|
||||
name="outputExtension",
|
||||
label="Keyframes File Extension",
|
||||
description="File extension of the written keyframes.",
|
||||
value="jpg",
|
||||
values=["exr", "jpg", "png"],
|
||||
description="File extension of the written keyframes.\n"
|
||||
"If 'none' is selected, no keyframe will be written on disk.\n"
|
||||
"For input videos, 'none' should not be used since the written keyframes are used to generate the output SfMData file.",
|
||||
value="none",
|
||||
values=["none", "exr", "jpg", "png"],
|
||||
exclusive=True,
|
||||
uid=[0],
|
||||
),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue