Update client/ayon_core/plugins/publish/extract_review.py

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Roy Nieterau 2025-06-18 11:48:27 +02:00 committed by GitHub
parent 009a7ec189
commit 628c8025d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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