Spaces:
Runtime error
Runtime error
ui changes
Browse files
app.py
CHANGED
@@ -19,7 +19,10 @@ def debug(audio, state="", delay=0.2):
|
|
19 |
# print(state)
|
20 |
return state, state
|
21 |
|
22 |
-
|
|
|
|
|
|
|
23 |
|
24 |
gr.Interface(
|
25 |
fn=transcribe,
|
@@ -35,5 +38,6 @@ gr.Interface(
|
|
35 |
"state"
|
36 |
],
|
37 |
live=True,
|
38 |
-
allow_flagging='never'
|
39 |
-
|
|
|
|
19 |
# print(state)
|
20 |
return state, state
|
21 |
|
22 |
+
|
23 |
+
delay_slider = gr.inputs.Slider(minimum=0, maximum=10, default=0.2, label="Delay (seconds). The rate of transcription (1 sec + delay).")
|
24 |
+
|
25 |
+
title = "OpenAI's Whisper Real-time Demo"
|
26 |
|
27 |
gr.Interface(
|
28 |
fn=transcribe,
|
|
|
38 |
"state"
|
39 |
],
|
40 |
live=True,
|
41 |
+
allow_flagging='never',
|
42 |
+
title=title,
|
43 |
+
).launch(enable_queue=True)
|