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...
f1ea34e
VideoSwap
/
app.py
awacke1
Create new file
8d5f9e5
almost 3 years ago
raw
Copy download link
history
blame
140 Bytes
import
gradio
as
gr
def
video_flip
(
video
):
return
video
demo = gr.Interface(video_flip, gr.Video(),
"playable_video"
)
demo.launch()