Reihaneh commited on
Commit
139a522
·
1 Parent(s): 7fd3301

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -16,13 +16,12 @@ def transcribe(audio):
16
 
17
  demo = gr.Interface(
18
 
19
- #title = title,
20
- #transcribe,
21
- #gr.Audio(sources=["upload"]),
22
- #"text",
23
- fn=transcribe,
24
- inputs=gr.Audio(sources=["upload"]),
25
- outputs="text",
26
  title=title,
27
  )
28
 
 
16
 
17
  demo = gr.Interface(
18
 
19
+ transcribe,
20
+ gr.Audio(sources=["upload"]),
21
+ "text",
22
+ #fn=transcribe,
23
+ #inputs=gr.Audio(sources=["upload"]),
24
+ #outputs="text",
 
25
  title=title,
26
  )
27