Moibe commited on
Commit
35e7909
1 Parent(s): e0bff1c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,7 +1,7 @@
1
  import gradio as gr
2
 
3
- def greet(input_image):
4
- return input_image
5
 
6
  iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
7
  iface.launch()
 
1
  import gradio as gr
2
 
3
+ def greet(input_video):
4
+ return input_video
5
 
6
  iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
7
  iface.launch()