Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tonyassi
/
voice-clone
like
1.51k
Running
on
Zero
App
Files
Files
Community
29
c79aed5
voice-clone
/
app.py
tonyassi
Update app.py
c79aed5
verified
8 months ago
raw
Copy download link
history
blame
Safe
230 Bytes
import
gradio
as
gr
def
clone
(
text, audio
):
return
audio
iface = gr.Interface(fn=clone,
inputs=[
"text"
,gr.Audio(
type
=
'filepath'
)],
outputs=gr.Audio(
type
=
'filepath'
))
iface.launch()