added new settings for filtering of single frame output for review

This commit is contained in:
Jakub Trllo 2022-11-02 19:43:37 +01:00
parent 4850b57715
commit ea5a1f8e52
2 changed files with 16 additions and 1 deletions

View file

@ -79,7 +79,8 @@
"ftrack"
],
"subsets": [],
"custom_tags": []
"custom_tags": [],
"single_frame_filter": "everytime"
},
"overscan_crop": "",
"overscan_color": [

View file

@ -304,6 +304,20 @@
"label": "Custom Tags",
"type": "list",
"object_type": "text"
},
{
"type": "label",
"label": "Use output <b>always</b> / only if input <b>is 1 frame</b> image / only if has <b>2+ frames</b> or <b>is video</b>"
},
{
"type": "enum",
"key": "single_frame_filter",
"default": "everytime",
"enum_items": [
{"everytime": "Always"},
{"single_frame": "On 1 frame input"},
{"multi_frame": "On 2+ frame input"}
]
}
]
},