Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ 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() as b:
|
58 |
gr.HTML("""<h1 style='font-size:xxx-large;font-weight:900;'>Piper Fast TTS</h1>
|
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>
|
@@ -72,30 +72,29 @@ with gr.Blocks() as b:
|
|
72 |
with gr.Accordion("Control"):
|
73 |
stream=gr.Checkbox(label="Stream",info="Streaming is fast, but lower quality",value=True,interactive=True)
|
74 |
length=gr.Slider(label="Length", minimum=0.01, maximum=10.0, value=1)
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
width=1
|
79 |
-
# sen_pause=gr.Slider(label="Sentence Pause", minimum=0.1, maximum=10.0, value=1)
|
80 |
-
sen_pause=1
|
81 |
with gr.Tab("Save Settings"):
|
82 |
save_btn=gr.Button("Save")
|
83 |
save_file=gr.File()
|
84 |
with gr.Tab("Load Settings"):
|
85 |
load_file=gr.File()
|
86 |
with gr.Column(scale=1):
|
|
|
|
|
|
|
87 |
with gr.Accordion("Model Config"):
|
88 |
json_ob=gr.JSON(label="JSON")
|
89 |
f1=stream.change(button_on,stream,[stream_btn,sub_btn])
|
90 |
-
|
91 |
f3=load_file.change(load_set,load_file,[names,length,noise,width,sen_pause])
|
92 |
-
|
93 |
f5=stream_btn.click(clear_aud,None,out_aud)
|
94 |
f6=stream_btn.click(pp.stream_tts,[in_txt,names,length,noise,width,sen_pause],out_aud)
|
95 |
f7=sub_btn.click(clear_aud,None,out_aud)
|
96 |
f8=sub_btn.click(pp.tts,[in_txt,names,length,noise,width,sen_pause],out_aud)
|
97 |
-
|
98 |
-
cancel_btn.click(None,None,None,cancels=[f1,f3,f5,f6,f7,f8])
|
99 |
b.load(init,None,names)
|
100 |
|
101 |
b.queue(default_concurrency_limit=20).launch(max_threads=40)
|
|
|
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(theme="Hev832/Applio-Theme") as b:
|
58 |
gr.HTML("""<h1 style='font-size:xxx-large;font-weight:900;'>Piper Fast TTS</h1>
|
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>
|
|
|
72 |
with gr.Accordion("Control"):
|
73 |
stream=gr.Checkbox(label="Stream",info="Streaming is fast, but lower quality",value=True,interactive=True)
|
74 |
length=gr.Slider(label="Length", minimum=0.01, maximum=10.0, value=1)
|
75 |
+
noise=gr.Slider(label="Noise", minimum=0.01, maximum=3.0, value=1)
|
76 |
+
width=gr.Slider(label="Noise Width", minimum=0.01, maximum=3.0, value=1)
|
77 |
+
sen_pause=gr.Slider(label="Sentence Pause", minimum=0.1, maximum=10.0, value=1)
|
|
|
|
|
|
|
78 |
with gr.Tab("Save Settings"):
|
79 |
save_btn=gr.Button("Save")
|
80 |
save_file=gr.File()
|
81 |
with gr.Tab("Load Settings"):
|
82 |
load_file=gr.File()
|
83 |
with gr.Column(scale=1):
|
84 |
+
expbtn1=gr.Button("Example 1").click(exp1,None,[in_txt,load_file])
|
85 |
+
expbtn2=gr.Button("Example 2").click(exp2,None,[in_txt,load_file])
|
86 |
+
expbtn3=gr.Button("Example 3").click(exp3,None,[in_txt,load_file])
|
87 |
with gr.Accordion("Model Config"):
|
88 |
json_ob=gr.JSON(label="JSON")
|
89 |
f1=stream.change(button_on,stream,[stream_btn,sub_btn])
|
90 |
+
f2=save_btn.click(save_set,[names,length,noise,width,sen_pause],save_file)
|
91 |
f3=load_file.change(load_set,load_file,[names,length,noise,width,sen_pause])
|
92 |
+
f4=names.change(load_mod,names,json_ob).then(clear_aud,None,out_aud)
|
93 |
f5=stream_btn.click(clear_aud,None,out_aud)
|
94 |
f6=stream_btn.click(pp.stream_tts,[in_txt,names,length,noise,width,sen_pause],out_aud)
|
95 |
f7=sub_btn.click(clear_aud,None,out_aud)
|
96 |
f8=sub_btn.click(pp.tts,[in_txt,names,length,noise,width,sen_pause],out_aud)
|
97 |
+
cancel_btn.click(None,None,None,cancels=[f1,f2,f3,f4,f5,f6,f7,f8])
|
|
|
98 |
b.load(init,None,names)
|
99 |
|
100 |
b.queue(default_concurrency_limit=20).launch(max_threads=40)
|