Update app.py
Browse files
app.py
CHANGED
@@ -414,7 +414,7 @@ def whisper_save_and_play_audio(audio_recorder):
|
|
414 |
with open(filename, 'wb') as f:
|
415 |
f.write(audio_bytes)
|
416 |
st.audio(audio_bytes, format="audio/wav")
|
417 |
-
st.markdown('Written file
|
418 |
return filename
|
419 |
|
420 |
def whisper_transcribe_audio(filename):
|
|
|
414 |
with open(filename, 'wb') as f:
|
415 |
f.write(audio_bytes)
|
416 |
st.audio(audio_bytes, format="audio/wav")
|
417 |
+
st.markdown(f'Written file ' + filename)
|
418 |
return filename
|
419 |
|
420 |
def whisper_transcribe_audio(filename):
|