summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kocialkowski2022-10-28 17:26:35 +0200
committerPaul Kocialkowski2022-10-28 17:58:43 +0200
commit6fe952a0e63035d5ab2e5e775aafb32d775caf14 (patch)
tree6d5e83acc91adc7508a37fc2534a0a72ba0c300e
parent2a36f7501ef86b3de4468f70d807a5f662d5021d (diff)
capture-pipeline: Use shot name for output name
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rwxr-xr-xcapture-pipeline6
1 files 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"]