Update app.py
Browse files
app.py
CHANGED
@@ -93,14 +93,18 @@ def infer(prompt, input_wav_file):
|
|
93 |
|
94 |
|
95 |
css = """
|
96 |
-
#col-container {max-width:
|
97 |
"""
|
98 |
|
99 |
with gr.Blocks(css=css) as demo:
|
100 |
with gr.Column(elem_id="col-container"):
|
101 |
|
102 |
gr.HTML("""
|
103 |
-
<h1>Instant Voice Cloning</h1>
|
|
|
|
|
|
|
|
|
104 |
""")
|
105 |
|
106 |
prompt = gr.Textbox(
|
|
|
93 |
|
94 |
|
95 |
css = """
|
96 |
+
#col-container {max-width: 580px; margin-left: auto; margin-right: auto;}
|
97 |
"""
|
98 |
|
99 |
with gr.Blocks(css=css) as demo:
|
100 |
with gr.Column(elem_id="col-container"):
|
101 |
|
102 |
gr.HTML("""
|
103 |
+
<h1 style="text-align: center;">Instant Voice Cloning</h1>
|
104 |
+
<p style="text-align: center;">
|
105 |
+
Clone any voice in less than 2 minutes with this <a href="https://tts.readthedocs.io/en/dev/models/bark.html" target="_blank">Coqui TSS + Bark</a> demo ! <br />
|
106 |
+
Upload a clean 20 seconds WAV file of the voice you want to clone, then click submit ! <br />
|
107 |
+
</p>
|
108 |
""")
|
109 |
|
110 |
prompt = gr.Textbox(
|