aiqcamp commited on
Commit
d03731a
ยท
verified ยท
1 Parent(s): 1346f45

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
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
- css=custom_css
347
- ).launch(allowed_paths=[output_dir])
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])