Spaces:
Paused
Paused
myhanhhyugen
commited on
Commit
•
5077fd0
1
Parent(s):
931193b
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,14 @@ hifi_gan = HIFIGAN.from_hparams(source="speechbrain/tts-hifigan-ljspeech")
|
|
16 |
# text = ["Hello I am a girl", "How is your day going", "I hope you are doing well"]
|
17 |
|
18 |
# Input text
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
if st.button("Synthesize Speech"):
|
22 |
if text:
|
|
|
16 |
# text = ["Hello I am a girl", "How is your day going", "I hope you are doing well"]
|
17 |
|
18 |
# Input text
|
19 |
+
text_input = st.text_input("Enter your text here")
|
20 |
+
|
21 |
+
# Check if the input is a list
|
22 |
+
if isinstance(text_input, str):
|
23 |
+
# Convert the input to a list
|
24 |
+
text = [text_input]
|
25 |
+
else:
|
26 |
+
text = text_input
|
27 |
|
28 |
if st.button("Synthesize Speech"):
|
29 |
if text:
|