From b0aa18934870cb0120703346c766325af81135bc Mon Sep 17 00:00:00 2001 From: Adam Froghyar Date: Mon, 14 Jun 2021 10:44:00 +0200 Subject: [PATCH] Forcing do_trim_silence to False in the extract TTS script --- TTS/bin/extract_tts_spectrograms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/TTS/bin/extract_tts_spectrograms.py b/TTS/bin/extract_tts_spectrograms.py index ace7464a..4eb79d76 100755 --- a/TTS/bin/extract_tts_spectrograms.py +++ b/TTS/bin/extract_tts_spectrograms.py @@ -299,4 +299,5 @@ if __name__ == "__main__": args = parser.parse_args() c = load_config(args.config_path) + c.audio['do_trim_silence'] = False # IMPORTANT!!!!!!!!!!!!!!! disable to align mel main(args)