cdleong commited on
Commit
f37ce85
·
1 Parent(s): f57db5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -7,6 +7,7 @@ from pathlib import Path
7
  def get_path_to_wav_format(uploaded_file):
8
  st.write(dir(uploaded_file))
9
  st.write(type(uploaded_file))
 
10
  if ".wav" in uploaded_file:
11
  return path(uploaded_file)
12
  # TODO: .mp3 conversion
 
7
  def get_path_to_wav_format(uploaded_file):
8
  st.write(dir(uploaded_file))
9
  st.write(type(uploaded_file))
10
+ st.write(uploaded_file)
11
  if ".wav" in uploaded_file:
12
  return path(uploaded_file)
13
  # TODO: .mp3 conversion