Skip to content

Commit

Permalink
Description for text input to explain splitting. #39
Browse files Browse the repository at this point in the history
  • Loading branch information
gitmylo committed Jun 23, 2023
1 parent 48642d5 commit 65f9a27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/modules/implementations/ttsmodels.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def update_voices():
return gradio.update(choices=self.get_voices())

input_type = gradio.Radio(['Text', 'Audio'], label='Input type', value='Text', **quick_kwargs)
textbox = gradio.Textbox(lines=7, label='Input', placeholder='Text to speak goes here', **quick_kwargs)
textbox = gradio.Textbox(lines=7, label='Input', placeholder='Text to speak goes here', info='Use enter to split long generations, keep the audio a bit long. (Automatic optimal splitting will be added soon.)', **quick_kwargs)
gen_prefix = gradio.Textbox(label='Generation prefix', info='Add this text before every generated chunk, better for keeping emotions.', **quick_kwargs)
audio_upload = gradio.File(label='Words to speak', file_types=['audio'], **quick_kwargs)
audio_upload.hide = True
Expand Down

0 comments on commit 65f9a27

Please sign in to comment.