Update app.py
Browse files
app.py
CHANGED
|
@@ -21,7 +21,7 @@ mic_transcribe = gr.Interface(
|
|
| 21 |
inputs=gr.Audio(sources="microphone",
|
| 22 |
type="filepath"),
|
| 23 |
outputs=gr.Textbox(label="Transcription",
|
| 24 |
-
lines=
|
| 25 |
allow_flagging="never",
|
| 26 |
description="Speak into the microphone or upload an audio file to transcribe it into text. This model uses a state-of-the-art speech recognition algorithm to recognize spoken words and phrases")
|
| 27 |
|
|
@@ -30,7 +30,7 @@ file_transcribe = gr.Interface(
|
|
| 30 |
inputs=gr.Audio(sources="upload",
|
| 31 |
type="filepath"),
|
| 32 |
outputs=gr.Textbox(label="Transcription",
|
| 33 |
-
lines=
|
| 34 |
allow_flagging="never",
|
| 35 |
description="Speak into the microphone or upload an audio file to transcribe it into text. This model uses a state-of-the-art speech recognition algorithm to recognize spoken words and phrases")
|
| 36 |
|
|
|
|
| 21 |
inputs=gr.Audio(sources="microphone",
|
| 22 |
type="filepath"),
|
| 23 |
outputs=gr.Textbox(label="Transcription",
|
| 24 |
+
lines=7),
|
| 25 |
allow_flagging="never",
|
| 26 |
description="Speak into the microphone or upload an audio file to transcribe it into text. This model uses a state-of-the-art speech recognition algorithm to recognize spoken words and phrases")
|
| 27 |
|
|
|
|
| 30 |
inputs=gr.Audio(sources="upload",
|
| 31 |
type="filepath"),
|
| 32 |
outputs=gr.Textbox(label="Transcription",
|
| 33 |
+
lines=7),
|
| 34 |
allow_flagging="never",
|
| 35 |
description="Speak into the microphone or upload an audio file to transcribe it into text. This model uses a state-of-the-art speech recognition algorithm to recognize spoken words and phrases")
|
| 36 |
|