Spaces:
Sleeping
Sleeping
Manu
commited on
Commit
·
448b3f1
1
Parent(s):
4f8fc46
added sample
Browse files
app.py
CHANGED
@@ -97,9 +97,9 @@ def synthesise_audio(text, forward_params=None):
|
|
97 |
|
98 |
#demo = gr.Interface(fn=greet, inputs="text", outputs="text", description="----- TTS Testing -----")
|
99 |
|
100 |
-
input_text = gr.Textbox(lines=10, label="
|
101 |
-
examples = gr.Examples([["Feliz cumpleaños Nuria"]], [
|
102 |
-
|
103 |
demo = gr.Interface(fn=synthesise_audio,
|
104 |
inputs=input_text,
|
105 |
outputs="audio",
|
|
|
97 |
|
98 |
#demo = gr.Interface(fn=greet, inputs="text", outputs="text", description="----- TTS Testing -----")
|
99 |
|
100 |
+
input_text = gr.Textbox(lines=10, label="Type the text you want to convert to speech:")
|
101 |
+
#examples = gr.Examples(inputs=[["Feliz cumpleaños Nuria"]], outputs=[[]])
|
102 |
+
examples = [["Feliz cumpleanos Nuria, que cumplas muchos mas"]]
|
103 |
demo = gr.Interface(fn=synthesise_audio,
|
104 |
inputs=input_text,
|
105 |
outputs="audio",
|