Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -10,8 +10,10 @@ def speech(text, audio):
|
|
10 |
|
11 |
interface = gr.Interface(
|
12 |
fn = speech,
|
13 |
-
|
14 |
-
|
|
|
|
|
15 |
outputs = [gr.Audio(label = "File path")]
|
16 |
, allow_flagging = "never")
|
17 |
|
|
|
10 |
|
11 |
interface = gr.Interface(
|
12 |
fn = speech,
|
13 |
+
title = "🎤Voice cloner",
|
14 |
+
description = "Record your voice or any other voice, input the text that you want to be spoken using the reference voice and voilà !",
|
15 |
+
inputs = [gr.Textbox(label= "Text to speak", placeholder = "Your text to speech here"),
|
16 |
+
gr.Audio(label= "Audio to clone", sources = ["microphone"], type = "filepath")],
|
17 |
outputs = [gr.Audio(label = "File path")]
|
18 |
, allow_flagging = "never")
|
19 |
|