Update app.py
Browse files
app.py
CHANGED
|
@@ -35,7 +35,9 @@ input_audio = gr.Audio(
|
|
| 35 |
gr.Interface(
|
| 36 |
title = 'OpenAI-Whisper Audio to Text Web UI',
|
| 37 |
fn=transcribe,
|
| 38 |
-
inputs =
|
|
|
|
|
|
|
| 39 |
outputs=[
|
| 40 |
"textbox"
|
| 41 |
],
|
|
|
|
| 35 |
gr.Interface(
|
| 36 |
title = 'OpenAI-Whisper Audio to Text Web UI',
|
| 37 |
fn=transcribe,
|
| 38 |
+
inputs = [
|
| 39 |
+
input_audio
|
| 40 |
+
],
|
| 41 |
outputs=[
|
| 42 |
"textbox"
|
| 43 |
],
|