Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
imseldrith
/
Auto-Dubbing
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
imseldrith
commited on
Feb 10, 2023
Commit
bee0e67
·
1 Parent(s):
6faa03d
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import gradio as gr
2
+
def vi(video):
3
+
return video
4
+
5
+
gr.Interface(fn=vi, inputs=gr.Video(),outputs=gr.Video()).launch()