OP-3723 - introduced max_downscale_size value to Settings

Studios might want to set maximum size to resize for ffmpeg to work based on OS or resources.
This commit is contained in:
Petr Kalis 2022-08-22 10:57:54 +02:00
parent 04397ccd2f
commit 3beca31c61
3 changed files with 14 additions and 4 deletions

View file

@ -32,6 +32,7 @@
},
"ExtractReview": {
"make_image_sequence": false,
"max_downscale_size": 8192,
"jpg_options": {
"tags": []
},

View file

@ -186,6 +186,15 @@
"key": "make_image_sequence",
"label": "Makes an image sequence instead of a flatten image"
},
{
"type": "number",
"key": "max_downscale_size",
"label": "Maximum size of sources for review",
"tooltip": "FFMpeg can only handle limited resolution for creation of review and/or thumbnail",
"minimum": 300,
"maximum": 16384,
"decimal": 0
},
{
"type": "dict",
"collapsible": false,