From b9e97c37df911a0c0a800dd9d48c486670b0d371 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 22 Apr 2024 10:22:23 +0200 Subject: [PATCH] offset only with option --- bin/mastering/mastering.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/mastering/mastering.py b/bin/mastering/mastering.py index 54e499f..dde579e 100755 --- a/bin/mastering/mastering.py +++ b/bin/mastering/mastering.py @@ -152,9 +152,9 @@ class TeleCasterMastering(object): if source_files: offsets = {} - if len(source_files) > 1: + if len(source_files) > 1 and self.auto_offset_mode: offsets = self.find_best_offset(source_files) - print(offsets) + # print(offsets) for file in source_files: path = os.path.abspath(file) filename, ext = os.path.splitext(file) -- 2.39.5