awacke1 commited on
Commit
8bbeee0
·
verified ·
1 Parent(s): eece006

Delete backup2.app.py

Browse files
Files changed (1) hide show
  1. backup2.app.py +0 -226
backup2.app.py DELETED
@@ -1,226 +0,0 @@
1
- import streamlit as st
2
- import datetime
3
- import os
4
-
5
- # Initialize session state for transcript history if not exists
6
- if 'transcript_history' not in st.session_state:
7
- st.session_state.transcript_history = ""
8
-
9
- # Create a container for the transcript history
10
- history_container = st.empty()
11
- text_area = st.empty()
12
-
13
- html = """
14
- <!DOCTYPE html>
15
- <html>
16
- <head>
17
- <title>Continuous Speech Demo</title>
18
- <style>
19
- body {
20
- font-family: sans-serif;
21
- padding: 20px;
22
- max-width: 800px;
23
- margin: 0 auto;
24
- }
25
- button {
26
- padding: 10px 20px;
27
- margin: 10px 5px;
28
- font-size: 16px;
29
- }
30
- #status {
31
- margin: 10px 0;
32
- padding: 10px;
33
- background: #e8f5e9;
34
- border-radius: 4px;
35
- }
36
- #output {
37
- white-space: pre-wrap;
38
- padding: 15px;
39
- background: #f5f5f5;
40
- border-radius: 4px;
41
- margin: 10px 0;
42
- min-height: 100px;
43
- max-height: 400px;
44
- overflow-y: auto;
45
- }
46
- .controls {
47
- margin: 10px 0;
48
- }
49
- </style>
50
- </head>
51
- <body>
52
- <h1>Continuous Speech Recognition</h1>
53
- <div class="controls">
54
- <button id="start">Start Listening</button>
55
- <button id="stop" disabled>Stop Listening</button>
56
- <button id="clear">Clear Text</button>
57
- </div>
58
- <div id="status">Ready</div>
59
- <div id="output"></div>
60
- <form id="transcriptForm" style="display:none;">
61
- <input type="hidden" id="transcriptData" name="transcript" value="">
62
- </form>
63
-
64
- <script>
65
- if (!('webkitSpeechRecognition' in window)) {
66
- alert('Speech recognition not supported');
67
- } else {
68
- const recognition = new webkitSpeechRecognition();
69
- const startButton = document.getElementById('start');
70
- const stopButton = document.getElementById('stop');
71
- const clearButton = document.getElementById('clear');
72
- const status = document.getElementById('status');
73
- const output = document.getElementById('output');
74
- const transcriptForm = document.getElementById('transcriptForm');
75
- const transcriptData = document.getElementById('transcriptData');
76
- let fullTranscript = '';
77
- let lastUpdateTime = Date.now();
78
-
79
- // Function to update Streamlit
80
- function updateStreamlit(text) {
81
- transcriptData.value = text;
82
- const event = new Event('submit');
83
- transcriptForm.dispatchEvent(event);
84
- }
85
-
86
- // Configure recognition
87
- recognition.continuous = true;
88
- recognition.interimResults = true;
89
-
90
- startButton.onclick = () => {
91
- try {
92
- recognition.start();
93
- status.textContent = 'Listening...';
94
- startButton.disabled = true;
95
- stopButton.disabled = false;
96
- } catch (e) {
97
- console.error(e);
98
- status.textContent = 'Error: ' + e.message;
99
- }
100
- };
101
-
102
- stopButton.onclick = () => {
103
- recognition.stop();
104
- status.textContent = 'Stopped';
105
- startButton.disabled = false;
106
- stopButton.disabled = true;
107
- };
108
-
109
- clearButton.onclick = () => {
110
- fullTranscript = '';
111
- output.textContent = '';
112
- updateStreamlit('');
113
- };
114
-
115
- recognition.onresult = (event) => {
116
- let interimTranscript = '';
117
- let finalTranscript = '';
118
-
119
- // Process results
120
- for (let i = event.resultIndex; i < event.results.length; i++) {
121
- const transcript = event.results[i][0].transcript;
122
- if (event.results[i].isFinal) {
123
- finalTranscript += transcript + '\\n';
124
- } else {
125
- interimTranscript += transcript;
126
- }
127
- }
128
-
129
- // Update if we have final results or it's been 5 seconds
130
- if (finalTranscript || (Date.now() - lastUpdateTime > 5000)) {
131
- if (finalTranscript) {
132
- fullTranscript += finalTranscript;
133
- updateStreamlit(finalTranscript);
134
- }
135
- lastUpdateTime = Date.now();
136
- }
137
-
138
- // Display results
139
- output.textContent = fullTranscript + (interimTranscript ? '... ' + interimTranscript : '');
140
-
141
- // Auto-scroll to bottom
142
- output.scrollTop = output.scrollHeight;
143
- };
144
-
145
- recognition.onend = () => {
146
- if (!stopButton.disabled) {
147
- try {
148
- recognition.start();
149
- console.log('Restarted recognition');
150
- } catch (e) {
151
- console.error('Failed to restart recognition:', e);
152
- status.textContent = 'Error restarting: ' + e.message;
153
- startButton.disabled = false;
154
- stopButton.disabled = true;
155
- }
156
- }
157
- };
158
-
159
- recognition.onerror = (event) => {
160
- console.error('Recognition error:', event.error);
161
- status.textContent = 'Error: ' + event.error;
162
-
163
- if (event.error === 'not-allowed' || event.error === 'service-not-allowed') {
164
- startButton.disabled = false;
165
- stopButton.disabled = true;
166
- }
167
- };
168
-
169
- // Handle form submission
170
- transcriptForm.onsubmit = (e) => {
171
- e.preventDefault();
172
- const formData = new FormData(transcriptForm);
173
- fetch('', {
174
- method: 'POST',
175
- body: formData
176
- });
177
- };
178
- }
179
- </script>
180
- </body>
181
- </html>
182
- """
183
-
184
- # Function to save transcript to file
185
- def save_transcript(text):
186
- if not os.path.exists('transcripts'):
187
- os.makedirs('transcripts')
188
-
189
- timestamp = datetime.datetime.now().strftime('%Y%m%d_%H%M%S')
190
- filename = f"transcripts/transcript_{timestamp}.md"
191
-
192
- with open(filename, 'a', encoding='utf-8') as f:
193
- f.write(text + '\n')
194
-
195
- # Main app
196
- st.title("Speech Recognition with Transcript History")
197
-
198
- # Create custom component
199
- st.components.v1.html(html, height=600)
200
-
201
- # Handle form data
202
- if st.session_state.get('form_submitted', False):
203
- transcript = st.session_state.get('transcript', '')
204
- if transcript:
205
- # Update the transcript history
206
- st.session_state.transcript_history += transcript + '\n'
207
-
208
- # Save to file
209
- save_transcript(transcript)
210
-
211
- # Update the display
212
- history_container.markdown(st.session_state.transcript_history)
213
- text_area.text_area("Full Transcript", st.session_state.transcript_history, height=200)
214
-
215
- # Add a download button for the full transcript
216
- if st.session_state.transcript_history:
217
- st.download_button(
218
- label="Download Full Transcript",
219
- data=st.session_state.transcript_history,
220
- file_name=f"transcript_{datetime.datetime.now().strftime('%Y%m%d_%H%M%S')}.md",
221
- mime="text/markdown"
222
- )
223
-
224
- # Reset form_submitted state
225
- if 'form_submitted' in st.session_state:
226
- st.session_state.form_submitted = False