From c5dab67d9f5b6081432b437a5d39d4069596732e Mon Sep 17 00:00:00 2001 From: Shivam Mehta Date: Thu, 21 Sep 2023 13:15:36 +0000 Subject: [PATCH] Adding teaser url --- matcha/app.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/matcha/app.py b/matcha/app.py index 40c8c21..23536bc 100644 --- a/matcha/app.py +++ b/matcha/app.py @@ -164,7 +164,10 @@ def main(): with gr.Box(): with gr.Row(): gr.Markdown(description, scale=3) - gr.Image(LOGO_URL, label="Matcha-TTS logo", height=150, width=150, scale=1, show_label=False) + with gr.Column(): + gr.Image(LOGO_URL, label="Matcha-TTS logo", height=50, width=50, scale=1, show_label=False) + html = '
' + gr.HTML(html) with gr.Box(): radio_options = list(RADIO_OPTIONS.keys()) @@ -320,6 +323,11 @@ def main(): label="Multi Speaker Examples", ) + with gr.Row(): + html = '

' + gr.Markdown("### Watch our teaser video") + gr.HTML(html) + model_type.change(lambda x: gr.update(interactive=False), inputs=[synth_btn], outputs=[synth_btn]).then( load_model_ui, inputs=[model_type, text],