Update app.py
Browse files
app.py
CHANGED
@@ -75,9 +75,10 @@ with gr.Blocks(theme="Hev832/Applio-Theme") as b:
|
|
75 |
with gr.Column(scale=2):
|
76 |
in_txt=gr.Textbox(label="Text",lines=10)
|
77 |
names=gr.Dropdown()
|
78 |
-
|
79 |
-
|
80 |
-
|
|
|
81 |
out_aud=gr.Audio(streaming=True, autoplay=True)
|
82 |
with gr.Column(scale=1):
|
83 |
expbtn1=gr.Button("Example 1").click(exp1,None,[in_txt,load_file])
|
|
|
75 |
with gr.Column(scale=2):
|
76 |
in_txt=gr.Textbox(label="Text",lines=10)
|
77 |
names=gr.Dropdown()
|
78 |
+
with gr.Row():
|
79 |
+
stream_btn=gr.Button("Stream",interactive=True,visible=True)
|
80 |
+
sub_btn=gr.Button(interactive=False,visible=False)
|
81 |
+
gr.CancelButton()
|
82 |
out_aud=gr.Audio(streaming=True, autoplay=True)
|
83 |
with gr.Column(scale=1):
|
84 |
expbtn1=gr.Button("Example 1").click(exp1,None,[in_txt,load_file])
|