Update app.py
Browse files
app.py
CHANGED
|
@@ -125,7 +125,9 @@ ui = gr.Interface(fn=transcribe,
|
|
| 125 |
inputs=my_inputs,
|
| 126 |
outputs=[gr.Textbox(label="Your Note", show_copy_button=True),
|
| 127 |
gr.Number(label="Audio Word Count"),
|
| 128 |
-
gr.Number(label=".mp3 MB")]
|
|
|
|
|
|
|
| 129 |
|
| 130 |
|
| 131 |
ui.launch(share=False, debug=True)
|
|
|
|
| 125 |
inputs=my_inputs,
|
| 126 |
outputs=[gr.Textbox(label="Your Note", show_copy_button=True),
|
| 127 |
gr.Number(label="Audio Word Count"),
|
| 128 |
+
gr.Number(label=".mp3 MB")],
|
| 129 |
+
preprocess=True,
|
| 130 |
+
)
|
| 131 |
|
| 132 |
|
| 133 |
ui.launch(share=False, debug=True)
|