mirror of https://github.com/coqui-ai/TTS.git
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:
commit
79241b69fe
|
@ -299,5 +299,5 @@ if __name__ == "__main__":
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
c = load_config(args.config_path)
|
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)
|
main(args)
|
||||||
|
|
Loading…
Reference in New Issue