Spaces:
Sleeping
Sleeping
Phạm Anh Tuấn
commited on
Commit
·
98cf224
1
Parent(s):
1149074
fix bug
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ if st.button("Generate"):
|
|
27 |
# audio = text_to_audio(user_input)
|
28 |
|
29 |
# Text to speech to a file
|
30 |
-
tts.tts_to_file(text=
|
31 |
|
32 |
# Display the audio
|
33 |
st.audio("output.wav", format="audio/wav")
|
@@ -36,7 +36,7 @@ if st.button("Generate"):
|
|
36 |
st.markdown("### Download the audio")
|
37 |
with open("output.wav", "rb") as audio_file:
|
38 |
audio_bytes = audio_file.read()
|
39 |
-
|
40 |
st.download_button(
|
41 |
label="Click to download",
|
42 |
data=audio_bytes,
|
|
|
27 |
# audio = text_to_audio(user_input)
|
28 |
|
29 |
# Text to speech to a file
|
30 |
+
tts.tts_to_file(text=user_input, file_path="output.wav")
|
31 |
|
32 |
# Display the audio
|
33 |
st.audio("output.wav", format="audio/wav")
|
|
|
36 |
st.markdown("### Download the audio")
|
37 |
with open("output.wav", "rb") as audio_file:
|
38 |
audio_bytes = audio_file.read()
|
39 |
+
|
40 |
st.download_button(
|
41 |
label="Click to download",
|
42 |
data=audio_bytes,
|