Spaces:
Starting on Zero
Starting on Zero
Commit ·
9022329
1
Parent(s): 86b5bcb
update spelling
Browse files
app.py
CHANGED
|
@@ -89,7 +89,7 @@ with gr.Blocks() as demo:
|
|
| 89 |
|
| 90 |
transcription_box = gr.Textbox(label="Transcription")
|
| 91 |
|
| 92 |
-
transcribe_btn.click(fn=transcribe,
|
| 93 |
outputs=[output_audio, transcription_box])
|
| 94 |
|
| 95 |
if __name__ == "__main__":
|
|
|
|
| 89 |
|
| 90 |
transcription_box = gr.Textbox(label="Transcription")
|
| 91 |
|
| 92 |
+
transcribe_btn.click(fn=transcribe, inputs=[audio_input],
|
| 93 |
outputs=[output_audio, transcription_box])
|
| 94 |
|
| 95 |
if __name__ == "__main__":
|