File size: 165 Bytes
fd3aeb7
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr


def video_flip(video):
    return video


iface = gr.Interface(video_flip, gr.inputs.Video(source="webcam"), "playable_video")

iface.launch()