cdleong commited on
Commit
6e454d6
1 Parent(s): 33115d3

update spinner again

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -116,7 +116,7 @@ if __name__ == "__main__":
116
 
117
  if uploaded_file is not None:
118
  wav_file = get_path_to_wav_format(uploaded_file, uploaded_files_count>suppress_output_threshold)
119
- with st.spinner(f"transcribing {wav_file}..."):
120
  result = model.recognize(wav_file, langcode)
121
  results[uploaded_file.name] = result
122
  files_done = i+1
116
 
117
  if uploaded_file is not None:
118
  wav_file = get_path_to_wav_format(uploaded_file, uploaded_files_count>suppress_output_threshold)
119
+ with st.spinner(f"transcribing {uploaded_file.name}..."):
120
  result = model.recognize(wav_file, langcode)
121
  results[uploaded_file.name] = result
122
  files_done = i+1