Spaces:
Sleeping
Sleeping
Rename app.py1 to app.py
Browse files- app.py1 → app.py +3 -9
app.py1 → app.py
RENAMED
@@ -1,16 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
from streamlit_mic_recorder import mic_recorder,speech_to_text
|
3 |
|
4 |
-
state=st.session_state
|
5 |
-
|
6 |
-
if 'text_received' not in state:
|
7 |
-
state.text_received=[]
|
8 |
-
|
9 |
-
st.write("Convert speech to text:")
|
10 |
text=speech_to_text(language='en',use_container_width=True,just_once=True,key='STT')
|
11 |
|
12 |
-
if text:
|
13 |
-
state.text_received.append(text)
|
14 |
|
15 |
for text in state.text_received:
|
16 |
-
st.
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_mic_recorder import mic_recorder,speech_to_text
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
text=speech_to_text(language='en',use_container_width=True,just_once=True,key='STT')
|
5 |
|
6 |
+
#if text:
|
7 |
+
#state.text_received.append(text)
|
8 |
|
9 |
for text in state.text_received:
|
10 |
+
st.write(text)
|