Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tonyassi/voice-clone
LuxOAI
/
ZEN-voice-clone
like
1
Running
on
Zero
App
Files
Files
Community
6f9510f
ZEN-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()