Merge pull request #572 from a-froghyar/fix-extract-tts-script

Forcing do_trim_silence to False in the extract TTS script
This commit is contained in:
Eren Gölge 2021-06-15 10:56:53 +02:00 committed by GitHub
commit 79241b69fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -299,5 +299,5 @@ if __name__ == "__main__":
args = parser.parse_args()
c = load_config(args.config_path)
C.audio['do_trim_silence'] = False
c.audio['do_trim_silence'] = False # IMPORTANT!!!!!!!!!!!!!!! disable to align mel
main(args)