File size: 507 Bytes
84598ac
 
 
 
 
1dc6162
 
 
03a1b99
1dc6162
 
 
 
 
 
 
84598ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr

def greet(name):
    return "Hello " + name + "!!"

def video_identity(video):
    return video

video_url = "https://ak.picdn.net/shutterstock/videos/21179416/preview/stock-footage-aerial-shot-winter-forest.mp4"
iface = gr.Interface(video_identity, 
                    gr.Video(), 
                    "playable_video", 
                    examples=[video_url], 
                    cache_examples=True)

#iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()