about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-03-11 07:57:53 -0400
committerelioat <elioat@tilde.institute>2025-03-11 07:57:53 -0400
commit45efc6b67f934adaed304260342bbfca600210b2 (patch)
tree1ecf9353ce493a0aab2ab23dd32f31301063a289
parent775fe740bd08f53edaa2ffc28614ae41a74ac222 (diff)
downloadtour-45efc6b67f934adaed304260342bbfca600210b2.tar.gz
*
-rw-r--r--html/voice-memos/app.js23
1 files changed, 7 insertions, 16 deletions
diff --git a/html/voice-memos/app.js b/html/voice-memos/app.js
index 445fffc..d21d1fa 100644
--- a/html/voice-memos/app.js
+++ b/html/voice-memos/app.js
@@ -49,7 +49,6 @@ const elements = {
 };
 
 /**
- * State management using closure
  * @returns {Object} State management functions
  */
 const createStateManager = () => {
@@ -67,7 +66,7 @@ const createStateManager = () => {
 const stateManager = createStateManager();
 
 /**
- * Formats elapsed time in seconds to MM:SS format
+ * Formats elapsed time to MM:SS
  * @param {number} seconds - Time in seconds
  * @returns {string} Formatted time string
  */
@@ -77,9 +76,6 @@ const formatTime = (seconds) => {
     return `${minutes.toString().padStart(2, '0')}:${remainingSeconds.toString().padStart(2, '0')}`;
 };
 
-/**
- * Updates the UI based on current state
- */
 const updateUI = () => {
     const { 
         isRecording, 
@@ -127,6 +123,7 @@ const updateUI = () => {
 
 /**
  * Saves the selected device ID to local storage
+ * Retains the last selected audio input device ID
  * @param {string} deviceId - The device ID to save
  */
 const saveSelectedDevice = (deviceId) => {
@@ -139,6 +136,7 @@ const saveSelectedDevice = (deviceId) => {
 
 /**
  * Gets the last selected device ID from local storage
+ * so that the user doesn't have to select the same device every time
  * @returns {string|null} The last selected device ID or null if not found
  */
 const getLastSelectedDevice = () => {
@@ -150,9 +148,6 @@ const getLastSelectedDevice = () => {
     }
 };
 
-/**
- * Populates the input source dropdown with available audio devices
- */
 const populateInputSources = async () => {
     try {
         // First, request microphone permission to get device labels
@@ -245,22 +240,18 @@ const setupWaveformVisualization = (analyser) => {
         
         // Draw waveform
         canvasCtx.beginPath();
-        
-        // Modern style with thicker lines and smoother curves
         canvasCtx.lineWidth = 2;
         canvasCtx.strokeStyle = '#ff3b30';
         
         const sliceWidth = canvas.width / bufferLength;
         let x = 0;
         
-        // First pass to smooth the data
         const smoothedData = [];
         const smoothingFactor = 0.2;
         
         for (let i = 0; i < bufferLength; i++) {
             const raw = dataArray[i] / 128.0 - 1.0;
             
-            // Apply smoothing
             if (i > 0) {
                 smoothedData.push(smoothedData[i-1] * smoothingFactor + raw * (1 - smoothingFactor));
             } else {
@@ -268,7 +259,6 @@ const setupWaveformVisualization = (analyser) => {
             }
         }
         
-        // Draw the smoothed waveform
         for (let i = 0; i < bufferLength; i++) {
             const v = smoothedData[i];
             const y = (v * canvas.height / 4) + canvas.height / 2;
@@ -284,7 +274,7 @@ const setupWaveformVisualization = (analyser) => {
         
         canvasCtx.stroke();
         
-        // Draw a reflection of the waveform (mirrored and more subtle)
+        // Draw a reflection of the waveform
         canvasCtx.beginPath();
         canvasCtx.strokeStyle = 'rgba(255, 59, 48, 0.3)';
         x = 0;
@@ -343,7 +333,7 @@ const getSupportedMimeType = () => {
 };
 
 /**
- * Starts the recording process with a countdown
+ * Starts the recording process after a countdown
  */
 const startRecording = async () => {
     try {
@@ -394,6 +384,7 @@ const startRecording = async () => {
         };
         
         // Start recording with 1 second timeslices to ensure we get data chunks
+        // FIXME: experiment with different chunk sizes
         mediaRecorder.start(1000);
         
         stateManager.setState({
@@ -560,7 +551,7 @@ const saveRecording = async () => {
             // Create metadata object
             const metadata = {
                 title: `Voice Memo ${formattedDate}`,
-                artist: 'Voice Memos App',
+                artist: 'Audio Gremlins',
                 album: 'Voice Recordings',
                 date: now.toISOString(),
                 device: deviceLabel,
+0100 committer hut <hut@lavabit.com> 2013-02-10 03:35:27 +0100 replaced tabs with 4 spaces in all python files' href='/akspecs/ranger/commit/ranger/core/main.py?id=d1a1173ddc315f21a3d468f43ac55aa43d31883d'>d1a1173d ^
d1a1173d ^
eb7b0a7b ^
d1a1173d ^

3c8086ec ^
f6de1679 ^
3c8086ec ^
f6de1679 ^


d1a1173d ^
85c5bff9 ^
bd44cd75 ^

3b7a9b18 ^
d1a1173d ^

1687e0f4 ^
d1a1173d ^








70ec0b26 ^
2b3110fc ^
d1a1173d ^
f6de1679 ^
f7199d8e ^

77f6c349 ^
f6de1679 ^
d1a1173d ^
f6de1679 ^
17f87391 ^
f6de1679 ^
ac27f175 ^


d1a1173d ^

cec7bd50 ^


f71281dd ^
ac27f175 ^


f71281dd ^
ac27f175 ^




17f87391 ^
d1a1173d ^
185c022e ^
d1a1173d ^
98a17646 ^
f6de1679 ^

924135e1 ^

2c4322ca ^
924135e1 ^









2ce165ba ^

924135e1 ^
d1a1173d ^
62a77e71 ^


ac27f175 ^
d1a1173d ^
924135e1 ^
185c022e ^
f6de1679 ^
d1a1173d ^
704ac8d5 ^
9a20699a ^

6ded89ed ^
f6de1679 ^
d1a1173d ^
76791a70 ^
d1a1173d ^
b3d031a9 ^
d1a1173d ^




17f87391 ^
d1a1173d ^
3b6ecb15 ^



d1a1173d ^


b3d031a9 ^
f6de1679 ^
d1a1173d ^


f7199d8e ^
ac27f175 ^
f7199d8e ^

085ea1e9 ^
ac27f175 ^



cec7bd50 ^
ac27f175 ^


cec7bd50 ^
ac27f175 ^





b327b735 ^
d1a1173d ^




f6de1679 ^

d1a1173d ^
f6de1679 ^
e79d929b ^
f6de1679 ^
d1a1173d ^

498ac4ff ^


9511bd6e ^

498ac4ff ^
9511bd6e ^
498ac4ff ^


f6de1679 ^
d1a1173d ^

b3d031a9 ^
62a77e71 ^


d1a1173d ^

9a619526 ^
1687e0f4 ^
d1a1173d ^
9a619526 ^
85c5bff9 ^
62a77e71 ^
bd44cd75 ^
9a619526 ^
62a77e71 ^



9a619526 ^


62a77e71 ^








9a619526 ^
d1a1173d ^
02b5366f ^

d1a1173d ^



62a77e71 ^
f6de1679 ^
d1a1173d ^
62a77e71 ^



0d1b5bac ^

2c4322ca ^
7324552d ^
3c87c41a ^
7324552d ^














f7199d8e ^






0d1b5bac ^
d1a1173d ^
27d06bb9 ^
bd44cd75 ^
951a95c2 ^
85c5bff9 ^
d1a1173d ^

76791a70 ^
d1a1173d ^
76791a70 ^
601b6f8f ^
76791a70 ^
27d06bb9 ^
f7199d8e ^
27d06bb9 ^
f7199d8e ^





d1a1173d ^
76791a70 ^

ced74b92 ^
76791a70 ^

ced74b92 ^

76791a70 ^

ced74b92 ^

76791a70 ^
ced74b92 ^
d1a1173d ^
76791a70 ^
46039fd0 ^

e5238c69 ^
76791a70 ^
d1a1173d ^
76791a70 ^

d1a1173d ^
76791a70 ^
d1a1173d ^
76791a70 ^

d1a1173d ^
f6de1679 ^
924135e1 ^
d1a1173d ^
27d06bb9 ^

cc8f5270 ^
583beebe ^
cc8f5270 ^

27d06bb9 ^
cc8f5270 ^

27d06bb9 ^
cc8f5270 ^


3963d9b8 ^
9b7f70b5 ^

3963d9b8 ^

8af08018 ^






ebd6d3e9 ^
6350c5b2 ^
8af08018 ^

3963d9b8 ^



cc8f5270 ^
27d06bb9 ^
cc8f5270 ^
27d06bb9 ^
cc8f5270 ^
27d06bb9 ^
cc8f5270 ^
f6de1679 ^
0d1b5bac ^

b3d031a9 ^




d1a1173d ^


b3d031a9 ^
d1a1173d ^


b3d031a9 ^
d1a1173d ^
b3d031a9 ^
d1a1173d ^

d9ee9ae9 ^


f6de1679 ^
d1a1173d ^

d9ee9ae9 ^
3d699f88 ^
d9ee9ae9 ^
f71281dd ^
d9ee9ae9 ^




c05a0b43 ^
d9ee9ae9 ^

f71281dd ^
d9ee9ae9 ^




370c270d ^

d9ee9ae9 ^












370c270d ^
d1a1173d ^
d9ee9ae9 ^



d1a1173d ^
1687e0f4 ^
d1a1173d ^
1687e0f4 ^


d1a1173d ^
a807090f ^








d1a1173d ^
b3d031a9 ^
cec7bd50 ^


f71281dd ^

d1a1173d ^



a60b15b7 ^









b3d031a9 ^
1687e0f4 ^
b3d031a9 ^



d1a1173d ^

f6de1679 ^
2d366e4f ^

d9ee9ae9 ^
2d366e4f ^

d9798f80 ^
d9ee9ae9 ^
b1d93d5c ^
2c02126b ^
2d366e4f ^
d9ee9ae9 ^

d9798f80 ^
2d366e4f ^

d1a1173d ^

0d1b5bac ^


d1a1173d ^










1687e0f4 ^
77f6c349 ^
b3d031a9 ^
70ec0b26 ^
d1a1173d ^



1
2
3
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514