Spaces:
Paused
Paused
import gradio as gr | |
def greet(name): | |
return "Hello " + name + "!!" | |
def video_identity(video): | |
return video | |
video_url = "https://youtu.be/yGodQAbYW_E" | |
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 = gr.FileExplorer(路路路) | |
iface.launch() | |