Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
santhakumar
/
webcam
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fd3aeb7
webcam
/
app.py
santhakumar
Added basic webcam project
fd3aeb7
over 1 year ago
raw
Copy download link
history
blame
165 Bytes
import
gradio
as
gr
def
video_flip
(
video
):
return
video
iface = gr.Interface(video_flip, gr.inputs.Video(source=
"webcam"
),
"playable_video"
)
iface.launch()