arxivgpt kim commited on
Commit
d4fafe6
·
verified ·
1 Parent(s): 96155c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -13
app.py CHANGED
@@ -200,23 +200,14 @@ def retry(edited_prompt, video_in, chosen_model):
200
  def refresh():
201
  return gr.update(value=None, interactive=False), gr.update(interactive=False), gr.update(value=None), gr.update(value=None)
202
 
203
- css="""
204
- #col-container{
205
- margin: 0 auto;
206
- max-width: 800px;
207
  }
208
  """
209
 
210
  with gr.Blocks(css=css) as demo:
211
- with gr.Column(elem_id="col-container"):
212
- gr.HTML("""
213
- <h2 style="text-align: center;">
214
- Video to SoundFX
215
- </h2>
216
- <p style="text-align: center;">
217
- Get sound effects from a video shot while comparing audio models from image caption.
218
- </p>
219
- """)
220
 
221
  with gr.Row():
222
 
 
200
  def refresh():
201
  return gr.update(value=None, interactive=False), gr.update(interactive=False), gr.update(value=None), gr.update(value=None)
202
 
203
+ css = """
204
+ footer {
205
+ visibility: hidden;
 
206
  }
207
  """
208
 
209
  with gr.Blocks(css=css) as demo:
210
+
 
 
 
 
 
 
 
 
211
 
212
  with gr.Row():
213