mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
cc0cff893f
- black formatting - isort formatting
12 lines
196 B
Python
12 lines
196 B
Python
import gradio as gr
|
|
|
|
|
|
def video_flip(video):
|
|
return video
|
|
|
|
|
|
iface = gr.Interface(video_flip, gr.inputs.Video(source="webcam"), "playable_video")
|
|
|
|
if __name__ == "__main__":
|
|
iface.launch()
|