mrfakename commited on
Commit
b8401e1
1 Parent(s): 205284d

Progress bar; readme update

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ with gr.Blocks() as demo:
15
  gr.Markdown('# MeloTTS\n\nAn unofficial demo of [MeloTTS](https://github.com/myshell-ai/MeloTTS) from MyShell AI. MeloTTS is a permissively licensed (MIT) SOTA multi-speaker TTS model.\n\nI am not affiliated with MyShell AI in any way.\n\nThis demo currently only supports English, but the model itself supports other languages.')
16
  with gr.Group():
17
  speaker = gr.Dropdown(speaker_ids.keys(), interactive=True, value='EN-Default', label='Speaker')
18
- speed = gr.Slider(label='Speed', minimum=0.1, maximum=3.0, value=1.0, interactive=True)
19
  text = gr.Textbox(label="Text to speak", value='The field of text to speech has seen rapid development recently')
20
  btn = gr.Button('Synthesize', variant='primary')
21
  aud = gr.Audio(interactive=False)
 
15
  gr.Markdown('# MeloTTS\n\nAn unofficial demo of [MeloTTS](https://github.com/myshell-ai/MeloTTS) from MyShell AI. MeloTTS is a permissively licensed (MIT) SOTA multi-speaker TTS model.\n\nI am not affiliated with MyShell AI in any way.\n\nThis demo currently only supports English, but the model itself supports other languages.')
16
  with gr.Group():
17
  speaker = gr.Dropdown(speaker_ids.keys(), interactive=True, value='EN-Default', label='Speaker')
18
+ speed = gr.Slider(label='Speed', minimum=0.1, maximum=10.0, value=1.0, interactive=True, step=0.1)
19
  text = gr.Textbox(label="Text to speak", value='The field of text to speech has seen rapid development recently')
20
  btn = gr.Button('Synthesize', variant='primary')
21
  aud = gr.Audio(interactive=False)