Nick088 commited on
Commit
479ad59
1 Parent(s): 9d7aa3b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,10 +69,10 @@ tab_img = gr.Interface(
69
  description="Gradio UI for Real-ESRGAN Pytorch version. To use it, simply upload your image, or click one of examples and choose the model. Read more at the links below. Please click submit only once <br><p style='text-align: center'><a href='https://arxiv.org/abs/2107.10833'>Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data</a> | <a href='https://github.com/ai-forever/Real-ESRGAN'>Github Repo</a></p>"
70
  )
71
 
72
- input_video = gr.Video(type="filepath", label='Input Video')
73
  input_model_video = gr.Radio(['2x', '4x', '8x'], type="value", value="4x", label="Model Upscale/Enhance Type")
74
  submit_video_button = gr.Button('Submit')
75
- output_video = gr.Video(type="filepath", label='Output Video')
76
 
77
  tab_vid = gr.Interface(
78
  fn=inference_video,
 
69
  description="Gradio UI for Real-ESRGAN Pytorch version. To use it, simply upload your image, or click one of examples and choose the model. Read more at the links below. Please click submit only once <br><p style='text-align: center'><a href='https://arxiv.org/abs/2107.10833'>Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data</a> | <a href='https://github.com/ai-forever/Real-ESRGAN'>Github Repo</a></p>"
70
  )
71
 
72
+ input_video = gr.Video(label='Input Video')
73
  input_model_video = gr.Radio(['2x', '4x', '8x'], type="value", value="4x", label="Model Upscale/Enhance Type")
74
  submit_video_button = gr.Button('Submit')
75
+ output_video = gr.Video(label='Output Video')
76
 
77
  tab_vid = gr.Interface(
78
  fn=inference_video,