Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tonyassi/voice-clone
LuxOAI
/
ZEN-voice-clone
like
1
Running
on
Zero
App
Files
Files
Community
a13c70d
ZEN-voice-clone
/
app.py
tonyassi
Create app.py
a13c70d
verified
7 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()