Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -122,10 +122,15 @@ for segment in segments:
|
|
122 |
|
123 |
st.write("---------------------------------------------------------------------")
|
124 |
|
|
|
|
|
125 |
for segment in segments:
|
126 |
-
|
127 |
-
|
|
|
128 |
|
|
|
|
|
129 |
|
130 |
###########################################################################################################
|
131 |
|
|
|
122 |
|
123 |
st.write("---------------------------------------------------------------------")
|
124 |
|
125 |
+
text_to_transcribe = ""
|
126 |
+
st.write("TOTAL TEXT TO TRANSCRIBE:")
|
127 |
for segment in segments:
|
128 |
+
st.write(segment.text)
|
129 |
+
text_to_transcribe = text_to_transcribe + " " + segment
|
130 |
+
# print(segment)
|
131 |
|
132 |
+
st.write("text_to_transcribe: ", text_to_transcribe)
|
133 |
+
|
134 |
|
135 |
###########################################################################################################
|
136 |
|