Update app.py
Browse files
app.py
CHANGED
@@ -54,11 +54,8 @@ def button_on(stream):
|
|
54 |
return gr.update(interactive=False,visible=False),gr.update(interactive=True,visible=True)
|
55 |
def clear_aud():
|
56 |
return None
|
57 |
-
with gr.Blocks(
|
58 |
-
gr.HTML("
|
59 |
-
<h4>Piper: <a href='https://github.com/rhasspy/piper' target='_blank'>https://github.com/rhasspy/piper</a></h4>
|
60 |
-
<h4>PyPiperTTS: <a href='https://github.com/broadfield-dev/PyPiperTTS' target='_blank'>https://github.com/broadfield-dev/PyPiperTTS</a></h4>
|
61 |
-
""")
|
62 |
with gr.Row():
|
63 |
with gr.Column(scale=2):
|
64 |
in_txt=gr.Textbox(label="Text",lines=10)
|
|
|
54 |
return gr.update(interactive=False,visible=False),gr.update(interactive=True,visible=True)
|
55 |
def clear_aud():
|
56 |
return None
|
57 |
+
with gr.Blocks() as b:
|
58 |
+
gr.HTML("<h1>Rhasspy Piper LU Streaming</h1>")
|
|
|
|
|
|
|
59 |
with gr.Row():
|
60 |
with gr.Column(scale=2):
|
61 |
in_txt=gr.Textbox(label="Text",lines=10)
|