Use IMAGE_EXTENSIONS

This commit is contained in:
Roy Nieterau 2025-11-26 10:22:17 +01:00
parent 344f91c983
commit 4f332766f0

View file

@ -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