Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,50 +1,37 @@
|
|
1 |
import streamlit as st
|
2 |
-
from
|
3 |
-
import
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
}
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
# If an audio was recorded, process it with PocketSphinx
|
40 |
-
if st.session_state.recording_done:
|
41 |
-
audio = LiveSpeech(**config)
|
42 |
-
|
43 |
-
st.text("Processing Audio...")
|
44 |
-
with st.spinner('Recognizing...'):
|
45 |
-
for phrase in audio:
|
46 |
-
st.write(phrase)
|
47 |
-
break # We'll stop after the first phrase
|
48 |
-
|
49 |
-
# Reset the state
|
50 |
-
st.session_state.recording_done = False
|
|
|
1 |
import streamlit as st
|
2 |
+
from bokeh.models.widgets import Button
|
3 |
+
from bokeh.models import CustomJS
|
4 |
+
from streamlit_bokeh_events import streamlit_bokeh_events
|
5 |
+
|
6 |
+
stt_button = Button(label="Speak", width=100)
|
7 |
+
|
8 |
+
stt_button.js_on_event("button_click", CustomJS(code="""
|
9 |
+
var recognition = new webkitSpeechRecognition();
|
10 |
+
recognition.continuous = true;
|
11 |
+
recognition.interimResults = true;
|
12 |
+
|
13 |
+
recognition.onresult = function (e) {
|
14 |
+
var value = "";
|
15 |
+
for (var i = e.resultIndex; i < e.results.length; ++i) {
|
16 |
+
if (e.results[i].isFinal) {
|
17 |
+
value += e.results[i][0].transcript;
|
18 |
+
}
|
19 |
+
}
|
20 |
+
if ( value != "") {
|
21 |
+
document.dispatchEvent(new CustomEvent("GET_TEXT", {detail: value}));
|
22 |
+
}
|
23 |
+
}
|
24 |
+
recognition.start();
|
25 |
+
"""))
|
26 |
+
|
27 |
+
result = streamlit_bokeh_events(
|
28 |
+
stt_button,
|
29 |
+
events="GET_TEXT",
|
30 |
+
key="listen",
|
31 |
+
refresh_on_update=False,
|
32 |
+
override_height=75,
|
33 |
+
debounce_time=0)
|
34 |
+
|
35 |
+
if result:
|
36 |
+
if "GET_TEXT" in result:
|
37 |
+
st.write(result.get("GET_TEXT"))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|