Used clique method

Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
This commit is contained in:
Petr Kalis 2025-03-11 18:19:34 +01:00 committed by GitHub
parent 74cb8574ee
commit d473118d39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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