phuntshowangdi commited on
Commit
4bee3e3
1 Parent(s): 988c576

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,9 +26,9 @@ def transcribe_speech(audio_file):
26
  # Streamlit app UI
27
  def main():
28
  st.title("Simple Speech Recognition App")
29
- st.write("### This app allows you to record or upload audio and see its transcription.")
30
 
31
- # Upload audio file or record from microphone
32
  audio_file = st.file_uploader("Upload Audio File", type=["wav", "mp3"])
33
  if audio_file:
34
  st.audio(audio_file, format='audio/wav')
 
26
  # Streamlit app UI
27
  def main():
28
  st.title("Simple Speech Recognition App")
29
+ st.write("### This app allows you to upload audio and see its transcription.")
30
 
31
+ # Upload audio file
32
  audio_file = st.file_uploader("Upload Audio File", type=["wav", "mp3"])
33
  if audio_file:
34
  st.audio(audio_file, format='audio/wav')