handle animation clips

This commit is contained in:
j 2023-10-28 11:25:45 +02:00
parent fee8e821f9
commit 3a367e8c73

View file

@ -43,6 +43,8 @@ class Command(BaseCommand):
clip['editingtags'] = i.data.get('editingtags', [])
if "original" in clip and "foreground" in clip and "background" in clip:
clips.append(clip)
elif "original" in clip and "animation" in clip:
clips.append(clip)
else:
print("ignoring incomplete video", i)