mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
OP-3723 - changed max limit
Official 16384x16384 actually didn't work because int overflow. 16000 tested and worked.
This commit is contained in:
parent
db6f46895b
commit
ebdf8a348a
1 changed files with 2 additions and 1 deletions
|
|
@ -143,7 +143,8 @@ class ExtractReview(openpype.api.Extractor):
|
|||
Ffmpeg has max size 16384x16384. Saved image(s) must be resized to be
|
||||
used as a source for thumbnail or review mov.
|
||||
"""
|
||||
max_ffmpeg_size = 16384
|
||||
# 16384x16384 actually didn't work because int overflow
|
||||
max_ffmpeg_size = 16000
|
||||
Image.MAX_IMAGE_PIXELS = None
|
||||
first_url = os.path.join(staging_dir, processed_img_names[0])
|
||||
with Image.open(first_url) as im:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue