Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -73,11 +73,14 @@ tab2 = gr.Interface(
|
|
73 |
|
74 |
|
75 |
with gr.Blocks() as tab3:
|
|
|
76 |
textbox = gr.Textbox(value="good morning pineapple! looking very good very nice!")
|
77 |
-
|
|
|
|
|
78 |
gr.Interface(
|
79 |
fn=text2speech,
|
80 |
-
inputs=[textbox,
|
81 |
outputs=["audio"],
|
82 |
)
|
83 |
|
|
|
73 |
|
74 |
|
75 |
with gr.Blocks() as tab3:
|
76 |
+
gr.Markdown("type the text to speak:")
|
77 |
textbox = gr.Textbox(value="good morning pineapple! looking very good very nice!")
|
78 |
+
gr.Markdown("record your voice sample:")
|
79 |
+
micinput = gr.Audio(sources=['microphone'], type="filepath", format="wav", value="sampleaudio/abraham.wav")
|
80 |
+
|
81 |
gr.Interface(
|
82 |
fn=text2speech,
|
83 |
+
inputs=[textbox, micinput],
|
84 |
outputs=["audio"],
|
85 |
)
|
86 |
|