add stop duration option
Browse files
app.py
CHANGED
@@ -38,18 +38,7 @@ description = "SLT Vietnamese Text to speech demo."
|
|
38 |
|
39 |
gr.Interface(
|
40 |
fn=speak,
|
41 |
-
inputs=[
|
42 |
-
gr.Textbox(
|
43 |
-
label="Initial text",
|
44 |
-
lines=3,
|
45 |
-
value="The quick brown fox jumped over the lazy dogs.",
|
46 |
-
),
|
47 |
-
gr.Textbox(
|
48 |
-
label="Text to compare",
|
49 |
-
lines=3,
|
50 |
-
value="The fast brown fox jumps over lazy dogs.",
|
51 |
-
),
|
52 |
-
],
|
53 |
outputs="audio",
|
54 |
title = title,
|
55 |
examples = [
|
|
|
38 |
|
39 |
gr.Interface(
|
40 |
fn=speak,
|
41 |
+
inputs=["text","text"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
outputs="audio",
|
43 |
title = title,
|
44 |
examples = [
|