From 3b2aca59299233cdd06631b4660e6781ee61ba88 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Fri, 28 Oct 2022 21:03:12 +0200 Subject: capture-pipeline: Make audio sync mandatory Signed-off-by: Paul Kocialkowski --- capture-pipeline | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/capture-pipeline b/capture-pipeline index e4f0d7d..44c532d 100755 --- a/capture-pipeline +++ b/capture-pipeline @@ -230,6 +230,12 @@ def audio_process(sequence, shot, take, part): if not source_path or not output_path: return + audio_sync = settings_item_entry(take, "audio-sync") + video_sync = settings_item_entry(take, "video-sync") + + if not audio_sync or not video_sync: + return + print(" - audio-source: " + audio_source_name(sequence, shot, take)) print(" - audio-output: " + audio_output_name(sequence, shot, take, part)) -- cgit v1.2.3