Phil Sobrepena commited on
Commit
977df40
·
1 Parent(s): ca73656

remove auth, add description to model tab

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -174,6 +174,9 @@ video_to_audio_tab = gr.Interface(
174
  description=""" Video-to-Audio
175
  NOTE: It takes longer to process high-resolution videos (>384 px on the shorter side).
176
  Doing so does not improve results.
 
 
 
177
  """,
178
  inputs=[
179
  gr.Video(),
@@ -234,5 +237,4 @@ if __name__ == "__main__":
234
 
235
  gr.TabbedInterface([video_to_audio_tab, image_to_audio_tab],
236
  ['Video-to-Audio', 'Image-to-Audio']).launch(
237
- auth=("admin", "sonisphere"),
238
  allowed_paths=[output_dir])
 
174
  description=""" Video-to-Audio
175
  NOTE: It takes longer to process high-resolution videos (>384 px on the shorter side).
176
  Doing so does not improve results.
177
+
178
+ The model has been trained on 8-second videos.
179
+ Using much longer or shorter videos will degrade performance. Around 5s~12s should be fine.
180
  """,
181
  inputs=[
182
  gr.Video(),
 
237
 
238
  gr.TabbedInterface([video_to_audio_tab, image_to_audio_tab],
239
  ['Video-to-Audio', 'Image-to-Audio']).launch(
 
240
  allowed_paths=[output_dir])