mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Use IMAGE_EXTENSIONS
This commit is contained in:
parent
344f91c983
commit
4f332766f0
1 changed files with 2 additions and 1 deletions
|
|
@ -14,6 +14,7 @@ from ayon_core.lib import (
|
|||
get_oiio_tool_args,
|
||||
run_subprocess
|
||||
)
|
||||
from ayon_core.lib.transcoding import IMAGE_EXTENSIONS
|
||||
from ayon_core.lib.profiles_filtering import filter_profiles
|
||||
|
||||
|
||||
|
|
@ -32,7 +33,7 @@ class ExtractOIIOPostProcess(publish.Extractor):
|
|||
optional = True
|
||||
|
||||
# Supported extensions
|
||||
supported_exts = {"exr", "jpg", "jpeg", "png", "dpx"}
|
||||
supported_exts = {ext.lstrip(".") for ext in IMAGE_EXTENSIONS}
|
||||
|
||||
# Configurable by Settings
|
||||
profiles = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue