[nodes] KeyframeSelection: extract all frames by default

This commit is contained in:
Fabien Castan 2021-04-16 10:39:07 +02:00
parent 8cf9dae33f
commit 2f18e89a9d

View file

@ -109,14 +109,14 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
name='useSparseDistanceSelection',
label='Use Sparse Distance Selection',
description='Use sparseDistance selection in order to avoid similar keyframes.',
value=True,
value=False,
uid=[0],
),
desc.BoolParam(
name='useSharpnessSelection',
label='Use Sharpness Selection',
description='Use frame sharpness score for keyframe selection.',
value=True,
value=False,
uid=[0],
),
desc.FloatParam(
@ -148,7 +148,7 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
name='minFrameStep',
label='Min Frame Step',
description='''minimum number of frames between two keyframes''',
value=12,
value=1,
range=(1, 100, 1),
uid=[0],
),
@ -156,7 +156,7 @@ You can extract frames at regular interval by configuring only the min/maxFrameS
name='maxFrameStep',
label='Max Frame Step',
description='''maximum number of frames after which a keyframe can be taken''',
value=36,
value=2,
range=(2, 1000, 1),
uid=[0],
),