mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
stop processing multipart exrs
This commit is contained in:
parent
13f6813410
commit
5f09521bd7
1 changed files with 4 additions and 4 deletions
|
|
@ -26,6 +26,10 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
|
||||||
# filter out mov and img sequences
|
# filter out mov and img sequences
|
||||||
representations_new = representations[:]
|
representations_new = representations[:]
|
||||||
|
|
||||||
|
if instance.data.get("multipartExr"):
|
||||||
|
# ffmpeg doesn't support multipart exrs
|
||||||
|
return
|
||||||
|
|
||||||
for repre in representations:
|
for repre in representations:
|
||||||
tags = repre.get("tags", [])
|
tags = repre.get("tags", [])
|
||||||
self.log.debug(repre)
|
self.log.debug(repre)
|
||||||
|
|
@ -36,10 +40,6 @@ class ExtractJpegEXR(pyblish.api.InstancePlugin):
|
||||||
if not isinstance(repre['files'], list):
|
if not isinstance(repre['files'], list):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if "multipartExr" in tags:
|
|
||||||
# ffmpeg doesn't support multipart exrs
|
|
||||||
continue
|
|
||||||
|
|
||||||
stagingdir = os.path.normpath(repre.get("stagingDir"))
|
stagingdir = os.path.normpath(repre.get("stagingDir"))
|
||||||
input_file = repre['files'][0]
|
input_file = repre['files'][0]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue