do_tts.py and read.py #4
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I think the gradio ui utilizes the do_tts.py and therefore will run out of memory/error out on longer text strings.
Can an option be implemented to switch within the UI between do_tts.py and read.py?
Thanks
Use the
Line Delimiter
input in the web UI to process your text input into pieces, similar toread.py
's behavior.For example, set
Line Delimiter
to\n
for it to process each line one by one instead of all at once.Thank you!