Merge pull request #1257 from BigRoy/bugfix/extract_oiio_transcode_fix_holes_check

This commit is contained in:
Roy Nieterau 2025-04-25 08:32:03 +02:00 committed by GitHub
commit 192f2ca6ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -280,7 +280,7 @@ class ExtractOIIOTranscode(publish.Extractor):
collection = collections[0]
frames = list(collection.indexes)
if collection.holes():
if collection.holes().indexes:
return files_to_convert
frame_str = "{}-{}#".format(frames[0], frames[-1])