Update app.py
Browse files
app.py
CHANGED
@@ -471,11 +471,11 @@ def get_speakers(language):
|
|
471 |
|
472 |
default_language = None
|
473 |
default_speaker = None
|
474 |
-
with gr.Blocks(title="
|
475 |
-
gr.HTML("<center><h1>
|
476 |
gr.HTML(f"<h2 style='color:Tomato;'> {len(language_dict)} languages supported</h3>")
|
477 |
gr.HTML(f"<p> {', '.join(language_dict.keys())} </h3>")
|
478 |
-
gr.Markdown("**Note:**
|
479 |
with gr.Row():
|
480 |
with gr.Column():
|
481 |
input_text = gr.Textbox(lines=5, label="Input Text", placeholder="Enter text to convert to speech")
|
|
|
471 |
|
472 |
default_language = None
|
473 |
default_speaker = None
|
474 |
+
with gr.Blocks(title="TTS") as demo:
|
475 |
+
gr.HTML("<center><h1>TTS</h1></center>")
|
476 |
gr.HTML(f"<h2 style='color:Tomato;'> {len(language_dict)} languages supported</h3>")
|
477 |
gr.HTML(f"<p> {', '.join(language_dict.keys())} </h3>")
|
478 |
+
gr.Markdown("**Note:** nothing anymore..")
|
479 |
with gr.Row():
|
480 |
with gr.Column():
|
481 |
input_text = gr.Textbox(lines=5, label="Input Text", placeholder="Enter text to convert to speech")
|