trysem commited on
Commit
ac993f1
1 Parent(s): 26f8bd6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -25,7 +25,7 @@ def extract_stems(audio):
25
  accompaniment = f"./output/"+ foldername +"/accompaniment.wav"
26
 
27
  # Get a transcript of the vocals, by using the huggingface pipeline
28
- transcript = pipe(vocals, chunk_length_s=10, decoder=None)
29
 
30
  return vocals, accompaniment, transcript
31
 
 
25
  accompaniment = f"./output/"+ foldername +"/accompaniment.wav"
26
 
27
  # Get a transcript of the vocals, by using the huggingface pipeline
28
+ transcript = pipe(vocals, chunk_length_s=10)
29
 
30
  return vocals, accompaniment, transcript
31