diff options
Diffstat (limited to 'capture-pipeline')
-rwxr-xr-x | capture-pipeline | 6 |
1 files changed, 6 insertions, 0 deletions
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)) |