Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def greet(
|
4 |
-
return
|
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()
|