JBHF commited on
Commit
2dd36d5
1 Parent(s): 7a19510

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -122,10 +122,15 @@ for segment in segments:
122
 
123
  st.write("---------------------------------------------------------------------")
124
 
 
 
125
  for segment in segments:
126
- st.write(segment.text)
127
- # print(segment)
 
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