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])