Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tonyassi/voice-clone
Artificial-superintelligence
/
voice-clone
like
7
Runtime error
App
Files
Files
Community
tonyassi
commited on
Apr 10
Commit
a13c70d
•
1 Parent(s):
b88203d
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def clone(text, audio):
4
+
return audio
5
+
6
+
iface = gr.Interface(fn=clone,
7
+
inputs=["text","audio"],
8
+
outputs="audio")
9
+
iface.launch()