TeraSpace commited on
Commit
c5e6494
1 Parent(s): b9eb9b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -16,10 +16,10 @@ def process_text(text: str) -> str:
16
  text = accentizer.process_all(text)
17
  return text
18
 
19
- def text_to_speech(model_name, text, prep_text):
20
  if prep_text:
21
  text = process_text(text)
22
- audio = models[model_name](text)
23
  models[model_name].save_wav(audio, 'temp.wav')
24
 
25
  return 'temp.wav', f"Обработанный текст: '{text}'"
@@ -27,11 +27,12 @@ def text_to_speech(model_name, text, prep_text):
27
  model_choice = gr.Dropdown(choices=list(models.keys()), value="TeraTTS/natasha-g2p-vits", label="Выберите модель")
28
  input_text = gr.Textbox(label="Введите текст для синтеза речи")
29
  prep_text = gr.Checkbox(label="Предобработать", info="Хотите пред обработать текст?(Ударения, ё)", value=True)
 
30
 
31
  output_audio = gr.Audio(label="Аудио", type="numpy")
32
  output_text = gr.Textbox(label="Обработанный текст")
33
 
34
- iface = gr.Interface(fn=text_to_speech, inputs=[model_choice, input_text, prep_text], outputs=[output_audio, output_text], title=title)
35
  iface.launch()
36
 
37
 
 
16
  text = accentizer.process_all(text)
17
  return text
18
 
19
+ def text_to_speech(model_name, lenght_scale, text, prep_text):
20
  if prep_text:
21
  text = process_text(text)
22
+ audio = models[model_name](text, lenght_scale=lenght_scale)
23
  models[model_name].save_wav(audio, 'temp.wav')
24
 
25
  return 'temp.wav', f"Обработанный текст: '{text}'"
 
27
  model_choice = gr.Dropdown(choices=list(models.keys()), value="TeraTTS/natasha-g2p-vits", label="Выберите модель")
28
  input_text = gr.Textbox(label="Введите текст для синтеза речи")
29
  prep_text = gr.Checkbox(label="Предобработать", info="Хотите пред обработать текст?(Ударения, ё)", value=True)
30
+ lenght_scale = gr.Slider(minimum=0.1, maximum=2.0, label="Lenght Scale(увеличить длину звучания) Default: 1.2", value=1.2)
31
 
32
  output_audio = gr.Audio(label="Аудио", type="numpy")
33
  output_text = gr.Textbox(label="Обработанный текст")
34
 
35
+ iface = gr.Interface(fn=text_to_speech, inputs=[model_choice, lenght_scale, input_text, prep_text], outputs=[output_audio, output_text], title=title)
36
  iface.launch()
37
 
38