From 6071b71752268448bee8fe70d51587393c1f3886 Mon Sep 17 00:00:00 2001 From: j Date: Thu, 19 Oct 2023 15:52:35 +0100 Subject: [PATCH] load editing tags --- management/commands/generate_clips.py | 1 + 1 file changed, 1 insertion(+) diff --git a/management/commands/generate_clips.py b/management/commands/generate_clips.py index 477b1f0..b9e46f3 100644 --- a/management/commands/generate_clips.py +++ b/management/commands/generate_clips.py @@ -38,6 +38,7 @@ class Command(BaseCommand): durations.append(e.files.all()[0].duration) clip["duration"] = min(durations) clip['tags'] = i.data.get('tags', []) + clip['editingtags'] = i.data.get('editingtags', []) if "original" in clip and "foreground" in clip and "background" in clip: clips.append(clip) else: