Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
voice-clone
like
1.64k
Running
on
Zero
App
Files
Files
Community
29
Fetching metadata from the HF Docker repository...
a13c70d
voice-clone
/
app.py
tonyassi
Create app.py
a13c70d
verified
9 months ago
raw
Copy download link
history
blame
Safe
194 Bytes
import
gradio
as
gr
def
clone
(
text, audio
):
return
audio
iface = gr.Interface(fn=clone,
inputs=[
"text"
,
"audio"
],
outputs=
"audio"
)
iface.launch()