Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -338,11 +338,18 @@ video_search_tab = gr.Interface(
|
|
338 |
|
339 |
|
340 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
# λ©μΈ μ€ν λΆλΆ μμ
|
342 |
if __name__ == "__main__":
|
343 |
gr.TabbedInterface(
|
344 |
[video_search_tab, video_to_audio_tab, text_to_audio_tab],
|
345 |
["Video Search", "Video-to-Audio", "Text-to-Audio"],
|
346 |
-
|
347 |
-
|
348 |
-
|
|
|
338 |
|
339 |
|
340 |
|
341 |
+
# CSS μ€νμΌ μμ
|
342 |
+
css = """
|
343 |
+
footer {
|
344 |
+
visibility: hidden;
|
345 |
+
}
|
346 |
+
""" + custom_css # κΈ°μ‘΄ custom_cssμ μλ‘μ΄ cssλ₯Ό κ²°ν©
|
347 |
+
|
348 |
# λ©μΈ μ€ν λΆλΆ μμ
|
349 |
if __name__ == "__main__":
|
350 |
gr.TabbedInterface(
|
351 |
[video_search_tab, video_to_audio_tab, text_to_audio_tab],
|
352 |
["Video Search", "Video-to-Audio", "Text-to-Audio"],
|
353 |
+
theme="Yntec/HaleyCH_Theme_Orange",
|
354 |
+
css=css
|
355 |
+
).launch(allowed_paths=[output_dir])
|