mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
10 lines
169 B
Python
10 lines
169 B
Python
import gradio as gr
|
|
|
|
def video_flip(video):
|
|
return video
|
|
|
|
iface = gr.Interface(video_flip, "video", "playable_video")
|
|
|
|
if __name__ == "__main__":
|
|
iface.launch()
|