Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
awacke1
/
VideoSwap
like
7
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5ffe53c
VideoSwap
/
app.py
awacke1
Update app.py
5ffe53c
almost 3 years ago
raw
Copy download link
history
blame
200 Bytes
import
gradio
as
gr
def
video_flip
(
video
):
return
video
demo = gr.Interface(video_flip, gr.Video(),
"playable_video"
, examples=[[
'zC3EhH5ssposNojKpYfp--85T53.mp4'
,
'ArtVideo'
]])
demo.launch()