hivecorp commited on
Commit
8ed1f45
·
verified ·
1 Parent(s): cd2b942

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -171,14 +171,14 @@ app = gr.Interface(
171
  gr.Textbox(label="Enter Script Text", lines=10),
172
  gr.Slider(label="Pitch Adjustment (Hz)", minimum=-20, maximum=20, value=0, step=1),
173
  gr.Slider(label="Rate Adjustment (%)", minimum=-50, maximum=50, value=-1, step=1),
174
- gr.Dropdown(label="Select Voice", choices=list(voice_options.keys()), value="Andrew"),
175
  ],
176
  outputs=[
177
  gr.File(label="Download SRT File"),
178
  gr.File(label="Download Audio File"),
179
  gr.Audio(label="Audio Playback")
180
  ],
181
- title="Text-to-Speech with SRT Generation",
182
  description="Convert your script into audio and generate subtitles.",
183
  theme="compact",
184
  )
 
171
  gr.Textbox(label="Enter Script Text", lines=10),
172
  gr.Slider(label="Pitch Adjustment (Hz)", minimum=-20, maximum=20, value=0, step=1),
173
  gr.Slider(label="Rate Adjustment (%)", minimum=-50, maximum=50, value=-1, step=1),
174
+ gr.Dropdown(label="Select Voice", choices=list(voice_options.keys()), value="Andrew Male"),
175
  ],
176
  outputs=[
177
  gr.File(label="Download SRT File"),
178
  gr.File(label="Download Audio File"),
179
  gr.Audio(label="Audio Playback")
180
  ],
181
+ title="HIVEcorp Text-to-Speech with SRT Generation",
182
  description="Convert your script into audio and generate subtitles.",
183
  theme="compact",
184
  )