mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-07 11:46:51 +08:00
12 lines
182 B
Python
12 lines
182 B
Python
import gradio as gr
|
|
|
|
|
|
def video_flip(video):
|
|
return video
|
|
|
|
|
|
iface = gr.Interface(video_flip, gr.inputs.Video(type=None), "video")
|
|
|
|
if __name__ == "__main__":
|
|
iface.launch()
|