Update app.py
Browse files
app.py
CHANGED
@@ -189,7 +189,11 @@ def process_video(video_url, audio_url, progress=gr.Progress()):
|
|
189 |
return None, f"All methods failed. Error: {str(fallback_error)}"
|
190 |
|
191 |
def create_interface():
|
192 |
-
|
|
|
|
|
|
|
|
|
193 |
gr.Markdown("# JSON 2")
|
194 |
with gr.Row():
|
195 |
with gr.Column():
|
|
|
189 |
return None, f"All methods failed. Error: {str(fallback_error)}"
|
190 |
|
191 |
def create_interface():
|
192 |
+
css = """
|
193 |
+
#component-0 > :not(.prose) {display: none !important;}
|
194 |
+
footer {display: none !important;}
|
195 |
+
"""
|
196 |
+
with gr.Blocks(css=css) as app:
|
197 |
gr.Markdown("# JSON 2")
|
198 |
with gr.Row():
|
199 |
with gr.Column():
|