node-mac-recorder 2.21.39 → 2.21.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +26 -1
- package/CREAVIT_CODE_SNIPPETS.md +832 -0
- package/CREAVIT_INTEGRATION.md +590 -0
- package/CURSOR_MAPPING.md +112 -0
- package/DUAL_RECORDING_PLAN.md +243 -0
- package/MULTI_RECORDING.md +270 -0
- package/MultiWindowRecorder.js +546 -0
- package/README.md +51 -0
- package/binding.gyp +1 -0
- package/index-multiprocess.js +238 -0
- package/index.js +174 -19
- package/package.json +1 -1
- package/recorder-worker.js +399 -0
- package/src/audio_mixer.mm +269 -0
- package/src/audio_recorder.mm +9 -0
- package/src/camera_recorder.mm +452 -260
- package/src/cursor_tracker.mm +75 -60
- package/src/mac_recorder.mm +279 -68
- package/src/screen_capture_kit.h +18 -5
- package/src/screen_capture_kit.mm +968 -387
|
@@ -5,7 +5,32 @@
|
|
|
5
5
|
"Bash(pkill:*)",
|
|
6
6
|
"Bash(for f in test-output/*1761946670140.mov)",
|
|
7
7
|
"Bash(node test.js:*)",
|
|
8
|
-
"Bash(sw_vers:*)"
|
|
8
|
+
"Bash(sw_vers:*)",
|
|
9
|
+
"Bash(node -e:*)",
|
|
10
|
+
"Bash(chmod:*)",
|
|
11
|
+
"Bash(node test-audio.js:*)",
|
|
12
|
+
"Bash(MAC_RECORDER_DEBUG=1 node test-audio-simple.js:*)",
|
|
13
|
+
"Bash(node test-audio-simple.js:*)",
|
|
14
|
+
"Bash(log show:*)",
|
|
15
|
+
"Bash(timeout 12 node:*)",
|
|
16
|
+
"Bash(timeout 15 node:*)",
|
|
17
|
+
"Bash(ffprobe:*)",
|
|
18
|
+
"Bash(for f in test-output/full-test-*.mov test-output/temp_camera-*.mov test-output/temp_audio-*.mov)",
|
|
19
|
+
"Bash(do [ -f $f ])",
|
|
20
|
+
"Bash(done)",
|
|
21
|
+
"Bash(awk:*)",
|
|
22
|
+
"Bash(node test-cursor-sync.js:*)",
|
|
23
|
+
"Bash(node -pe:*)",
|
|
24
|
+
"Bash(xargs cat:*)",
|
|
25
|
+
"Bash(tee:*)",
|
|
26
|
+
"Bash(xargs:*)",
|
|
27
|
+
"Bash(node test-dual-window.js:*)",
|
|
28
|
+
"Bash(node:*)",
|
|
29
|
+
"Bash(timeout 20 node:*)",
|
|
30
|
+
"Bash(find:*)",
|
|
31
|
+
"Bash(perl:*)",
|
|
32
|
+
"Bash(unzip:*)",
|
|
33
|
+
"Bash(python3:*)"
|
|
9
34
|
],
|
|
10
35
|
"deny": [],
|
|
11
36
|
"ask": []
|