diff --git a/config.jsonc b/config.jsonc index 56f41a1..613c1e6 100644 --- a/config.jsonc +++ b/config.jsonc @@ -604,6 +604,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution. "autocomplete": true, "columnWidth": 180, "filter": true, + "find": true, "sort": true }, { diff --git a/render.py b/render.py index 5464b23..1476021 100644 --- a/render.py +++ b/render.py @@ -155,6 +155,7 @@ def compose(clips, fragment, target=150, base=1024, voice_over=None, options=Non scene['front']['V2'].append({ 'duration': clip_duration, + 'item': clip['item'], 'src': src, "filter": { } @@ -185,6 +186,7 @@ def compose(clips, fragment, target=150, base=1024, voice_over=None, options=Non } scene['audio-front']['A2'].append({ 'duration': clip_duration, + 'item': clip['item'], 'src': audio, 'filter': audio_filter.copy() }) @@ -1037,6 +1039,7 @@ def generate_clips(options): voice_over[fragment][type] = [] vo_variant = { "variant": variant, + "item": source.public_id, "src": target, #"duration": format_duration(source.duration, fps, True), "duration": source.duration,