Added psd to ExtractReview

ffmpeg and oiiotool seem to handle it fine.
This commit is contained in:
Petr Kalis 2025-12-11 18:02:04 +01:00
parent 505021344b
commit bbff056268

View file

@ -169,7 +169,9 @@ class ExtractReview(pyblish.api.InstancePlugin):
settings_category = "core"
# Supported extensions
image_exts = {"exr", "jpg", "jpeg", "png", "dpx", "tga", "tiff", "tif"}
image_exts = {
"exr", "jpg", "jpeg", "png", "dpx", "tga", "tiff", "tif", "psd"
}
video_exts = {"mov", "mp4"}
supported_exts = image_exts | video_exts