Selim321 commited on
Commit
82cd0cb
1 Parent(s): 87c9ce9

Minor changes

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -93,11 +93,11 @@ if submit_button:
93
  # Convert text summary into audio
94
  tts = gTTS(summary)
95
  print("converting text to audio")
96
- tts.save('hello.mp3')
97
 
98
  # Download audio transcript
99
  with open('Summary.mp3', 'rb') as f:
100
- st.download_button('Download mp3', f, file_name='hello.mp3')
101
 
102
 
103
 
 
93
  # Convert text summary into audio
94
  tts = gTTS(summary)
95
  print("converting text to audio")
96
+ tts.save('Summary.mp3')
97
 
98
  # Download audio transcript
99
  with open('Summary.mp3', 'rb') as f:
100
+ st.download_button('Download mp3', f, file_name='Summary.mp3')
101
 
102
 
103