disable ffmpeg for multipart EXRs

This commit is contained in:
Ondrej Samohel 2020-03-27 17:08:04 +01:00
parent ff5bcaf040
commit 46cc7b2b00
No known key found for this signature in database
GPG key ID: 8A29C663C672C2B7
5 changed files with 239 additions and 186 deletions

View file

@ -36,6 +36,10 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
if not isinstance(repre['files'], list):
continue
if repre.get("multipartExr", False) is True:
# ffmpeg doesn't support multipart exrs
continue
stagingdir = os.path.normpath(repre.get("stagingDir"))
input_file = repre['files'][0]