You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to somehow use an external script to send texts for it to say. But the following code doesn't work. I have also commented out the show() in the ui.py script as to not show the UI. This is my code (this is in a modified demo_toolbox.py script, just the last part, the rest is the same): print("Init #1") tb = Toolbox(**arg_dict) print("Init #2") tb.load_from_browser(tb, Path("E:/VoiceCloner/voices/Charlie.flac)) print("Init #3") tb.synthesize(tb, "Hello. This is a text, and my name is Charlie.")
But when I run it it prints:
`Arguments:
datasets_root: None
models_dir: saved_models
cpu: False
seed: None
Init #1
Warning: you did not pass a root directory for datasets as argument.
The recognized datasets are:
LibriSpeech/dev-clean
LibriSpeech/dev-other
etc. etc.
VCTK-Corpus/wav48
Feel free to add your own. You can still use the toolbox by recording samples yourself.
`
Then it jumps down one line, but Init#2 never shows up. Why? Sorry btw if this is the wrong place to ask this.
The text was updated successfully, but these errors were encountered:
I want to somehow use an external script to send texts for it to say. But the following code doesn't work. I have also commented out the show() in the ui.py script as to not show the UI. This is my code (this is in a modified demo_toolbox.py script, just the last part, the rest is the same):
print("Init #1") tb = Toolbox(**arg_dict) print("Init #2") tb.load_from_browser(tb, Path("E:/VoiceCloner/voices/Charlie.flac)) print("Init #3") tb.synthesize(tb, "Hello. This is a text, and my name is Charlie.")
But when I run it it prints:
`Arguments:
datasets_root: None
models_dir: saved_models
cpu: False
seed: None
Init #1
Warning: you did not pass a root directory for datasets as argument.
The recognized datasets are:
LibriSpeech/dev-clean
LibriSpeech/dev-other
etc. etc.
VCTK-Corpus/wav48
Feel free to add your own. You can still use the toolbox by recording samples yourself.
`
Then it jumps down one line, but Init#2 never shows up. Why? Sorry btw if this is the wrong place to ask this.
The text was updated successfully, but these errors were encountered: