node-mac-recorder 2.13.1 → 2.13.2
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/package.json +1 -1
- package/src/mac_recorder.mm +3 -3
package/package.json
CHANGED
package/src/mac_recorder.mm
CHANGED
|
@@ -168,9 +168,9 @@ Napi::Value StartRecording(const Napi::CallbackInfo& info) {
|
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
@try {
|
|
171
|
-
//
|
|
172
|
-
NSLog(@"🔍
|
|
173
|
-
if (
|
|
171
|
+
// Use stable AVFoundation approach - ScreenCaptureKit disabled until Electron crash resolved
|
|
172
|
+
NSLog(@"🔍 Using stable AVFoundation approach (ScreenCaptureKit disabled for Electron compatibility)");
|
|
173
|
+
if (false) { // Disable ScreenCaptureKit completely for now
|
|
174
174
|
NSLog(@"✅ macOS 12.3+ detected - ScreenCaptureKit should be available");
|
|
175
175
|
if ([ScreenCaptureKitRecorder isScreenCaptureKitAvailable]) {
|
|
176
176
|
NSLog(@"✅ ScreenCaptureKit availability check passed");
|