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...
c7d09b0
VideoSwap
/
app.py
awacke1
Update app.py
c7d09b0
almost 3 years ago
raw
Copy download link
history
blame
198 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()