Phạm Anh Tuấn commited on
Commit
98cf224
·
1 Parent(s): 1149074
Files changed (1) hide show
  1. app.py +2 -2
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="Hello world!", file_path="output.wav")
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,