Spaces:
Running
Running
Irpan
commited on
Commit
·
b9ff9e2
1
Parent(s):
bef8623
asr
Browse files
app.py
CHANGED
@@ -29,6 +29,12 @@ mms_synthesize = gr.Interface(
|
|
29 |
fn=tts.synthesize,
|
30 |
inputs=[
|
31 |
gr.Text(label="Input text"),
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
],
|
33 |
outputs=[
|
34 |
gr.Audio(label="Generated Audio", type="numpy"),
|
|
|
29 |
fn=tts.synthesize,
|
30 |
inputs=[
|
31 |
gr.Text(label="Input text"),
|
32 |
+
gr.Dropdown(
|
33 |
+
choices=[model for model in tts.models_info] + ["Compare All Models"],
|
34 |
+
label="Select Model for TTS",
|
35 |
+
value="Meta-MMS",
|
36 |
+
interactive=True
|
37 |
+
)
|
38 |
],
|
39 |
outputs=[
|
40 |
gr.Audio(label="Generated Audio", type="numpy"),
|