abidlabs HF staff commited on
Commit
f1aaf59
1 Parent(s): 1091ff9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,6 +3,6 @@ import gradio as gr
3
  whisper = gr.load("models/openai/whisper-small")
4
 
5
  def transcribe(audio):
6
- return whisper(audio)
7
 
8
  gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch()
 
3
  whisper = gr.load("models/openai/whisper-small")
4
 
5
  def transcribe(audio):
6
+ return whisper(audio).replace("AutomaticSpeechRecognitionOutput(text=' ", "").replace("', chunks=None)", "")
7
 
8
  gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch()