From 6fe952a0e63035d5ab2e5e775aafb32d775caf14 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Fri, 28 Oct 2022 17:26:35 +0200 Subject: capture-pipeline: Use shot name for output name Signed-off-by: Paul Kocialkowski --- capture-pipeline | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/capture-pipeline b/capture-pipeline index 953bbbc..bda7bea 100755 --- a/capture-pipeline +++ b/capture-pipeline @@ -119,8 +119,7 @@ def audio_output_base(sequence, shot): def audio_output_name(sequence, shot, take, part = None): base = audio_output_base(sequence, shot) label = shot_label(shot) - prefix = shot_prefix(shot) - name = "" + name = shot_name(shot) if part and "actions" in part: actions = part["actions"] @@ -305,8 +304,7 @@ def video_output_base(sequence, shot): def video_output_name(sequence, shot, take, part = None): base = video_output_base(sequence, shot) label = shot_label(shot) - prefix = shot_prefix(shot) - name = prefix + name = shot_name(shot) if part and "actions" in part: actions = part["actions"] -- cgit v1.2.3