ecarbo commited on
Commit
4c699e9
·
1 Parent(s): b5743d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -9,11 +9,10 @@ def transcribe(audio, state=""):
9
  state += text + " "
10
  return state, state
11
 
12
- gr.Interface(
13
- fn=transcribe,
14
- inputs=[gr.inputs.Audio(source="microphone", type="filepath", label="Record/ Drop audio"), "state"],
15
- outputs=["textbox", "state"],
16
- title="Automatic Speech Recognition",
17
- description="Enable the recognition spoken language into text by computers.",
18
- theme="huggingface",
19
- live=True).launch()
 
9
  state += text + " "
10
  return state, state
11
 
12
+ gr.Interface(fn=transcribe,
13
+ inputs=[gr.inputs.Audio(source="microphone", type="filepath", label="Record/ Drop audio"), "state"],
14
+ outputs=["textbox", "state"],
15
+ title="Automatic Speech Recognition",
16
+ description="Enable the recognition spoken language into text by computers.",
17
+ theme="huggingface",
18
+ live=True).launch()