don't re-amplify voice tracks

This commit is contained in:
2024-06-29 14:55:34 -06:00
parent 2a495b2c0a
commit 2e6bb71590

View File

@@ -17,6 +17,9 @@ json_filename = util.arg(1, usage)
filenames=list(glob.glob(json_filename)) if '*' in json_filename else [json_filename]
for json_filename in filenames:
if json_filename.endswith("-amplified.json"):
continue
print(json_filename)
default_wav_name = json_filename.replace('.json', '.wav')