Update app.py
Browse files
app.py
CHANGED
|
@@ -227,7 +227,11 @@ def process_video(voice, url, text, progress=gr.Progress()):
|
|
| 227 |
|
| 228 |
def create_interface():
|
| 229 |
voices = get_voices()
|
| 230 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 231 |
gr.Markdown("# Generator")
|
| 232 |
with gr.Row():
|
| 233 |
with gr.Column():
|
|
|
|
| 227 |
|
| 228 |
def create_interface():
|
| 229 |
voices = get_voices()
|
| 230 |
+
css = """
|
| 231 |
+
#component-0 > :not(.prose) {display: none !important;}
|
| 232 |
+
footer {display: none !important;}
|
| 233 |
+
"""
|
| 234 |
+
with gr.Blocks(css=css) as app:
|
| 235 |
gr.Markdown("# Generator")
|
| 236 |
with gr.Row():
|
| 237 |
with gr.Column():
|