node-mac-recorder 2.20.0 → 2.20.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.
@@ -577,60 +577,15 @@ Napi::Value GetDisplays(const Napi::CallbackInfo& info) {
577
577
  CGDirectDisplayID displayID = activeDisplays[i];
578
578
  CGRect displayBounds = CGDisplayBounds(displayID);
579
579
  bool isPrimary = (displayID == CGMainDisplayID());
580
-
581
- // Calculate scale factor and physical dimensions
582
- CGSize logicalSize = displayBounds.size;
583
- CGFloat scaleFactor = 1.0;
584
- CGSize physicalSize = logicalSize;
585
- CGSize actualPhysicalSize = logicalSize;
586
-
587
- // Get actual display mode info first (most accurate)
588
- CGDisplayModeRef mode = CGDisplayCopyDisplayMode(displayID);
589
- if (mode) {
590
- size_t modePixelWidth = CGDisplayModeGetPixelWidth(mode);
591
- size_t modePixelHeight = CGDisplayModeGetPixelHeight(mode);
592
- actualPhysicalSize = CGSizeMake(modePixelWidth, modePixelHeight);
593
- CGDisplayModeRelease(mode);
594
- }
595
-
596
- // Use NSScreen for backing scale factor (this is the UI scaling)
597
- NSArray *screens = [NSScreen screens];
598
- for (NSScreen *screen in screens) {
599
- NSDictionary *screenDescription = [screen deviceDescription];
600
- NSNumber *screenNumber = [screenDescription objectForKey:@"NSScreenNumber"];
601
- if (screenNumber && [screenNumber unsignedIntValue] == displayID) {
602
- scaleFactor = [screen backingScaleFactor];
603
-
604
- // For cursor tracking, we want to use the logical coordinates that macOS reports
605
- // Physical size should be what the system actually uses for display output
606
- physicalSize = actualPhysicalSize;
607
-
608
- NSLog(@"🔍 Display %u scale analysis:", displayID);
609
- NSLog(@" Logical bounds: %.0fx%.0f", logicalSize.width, logicalSize.height);
610
- NSLog(@" NSScreen backing scale: %.1fx", scaleFactor);
611
- NSLog(@" CGDisplayMode pixels: %.0fx%.0f", actualPhysicalSize.width, actualPhysicalSize.height);
612
- NSLog(@" Calculated scale: %.2fx", actualPhysicalSize.width / logicalSize.width);
613
- break;
614
- }
615
- }
616
-
617
- // Fallback if NSScreen method didn't work
618
- if (scaleFactor == 1.0 && actualPhysicalSize.width > logicalSize.width) {
619
- scaleFactor = actualPhysicalSize.width / logicalSize.width;
620
- physicalSize = actualPhysicalSize;
621
- }
622
-
580
+
623
581
  NSDictionary *displayInfo = @{
624
582
  @"id": @(displayID), // Direct CGDirectDisplayID
625
583
  @"name": [NSString stringWithFormat:@"Display %u", (unsigned int)(i + 1)],
626
- @"width": @((int)logicalSize.width),
627
- @"height": @((int)logicalSize.height),
584
+ @"width": @((int)displayBounds.size.width),
585
+ @"height": @((int)displayBounds.size.height),
628
586
  @"x": @((int)displayBounds.origin.x),
629
587
  @"y": @((int)displayBounds.origin.y),
630
- @"isPrimary": @(isPrimary),
631
- @"scaleFactor": @(scaleFactor),
632
- @"physicalWidth": @((int)physicalSize.width),
633
- @"physicalHeight": @((int)physicalSize.height)
588
+ @"isPrimary": @(isPrimary)
634
589
  };
635
590
  [displays addObject:displayInfo];
636
591
  }
@@ -640,16 +595,13 @@ Napi::Value GetDisplays(const Napi::CallbackInfo& info) {
640
595
 
641
596
  for (NSUInteger i = 0; i < displays.count; i++) {
642
597
  NSDictionary *display = displays[i];
643
- NSLog(@"Display %lu: ID=%u, Name=%@, Logical=%@x%@, Physical=%@x%@, Scale=%.1fx",
598
+ NSLog(@"Display %lu: ID=%u, Name=%@, Size=%@x%@",
644
599
  (unsigned long)i,
645
600
  [display[@"id"] unsignedIntValue],
646
601
  display[@"name"],
647
602
  display[@"width"],
648
- display[@"height"],
649
- display[@"physicalWidth"],
650
- display[@"physicalHeight"],
651
- [display[@"scaleFactor"] doubleValue]);
652
-
603
+ display[@"height"]);
604
+
653
605
  Napi::Object displayObj = Napi::Object::New(env);
654
606
  displayObj.Set("id", Napi::Number::New(env, [display[@"id"] unsignedIntValue]));
655
607
  displayObj.Set("name", Napi::String::New(env, [display[@"name"] UTF8String]));
@@ -658,9 +610,6 @@ Napi::Value GetDisplays(const Napi::CallbackInfo& info) {
658
610
  displayObj.Set("x", Napi::Number::New(env, [display[@"x"] doubleValue]));
659
611
  displayObj.Set("y", Napi::Number::New(env, [display[@"y"] doubleValue]));
660
612
  displayObj.Set("isPrimary", Napi::Boolean::New(env, [display[@"isPrimary"] boolValue]));
661
- displayObj.Set("scaleFactor", Napi::Number::New(env, [display[@"scaleFactor"] doubleValue]));
662
- displayObj.Set("physicalWidth", Napi::Number::New(env, [display[@"physicalWidth"] doubleValue]));
663
- displayObj.Set("physicalHeight", Napi::Number::New(env, [display[@"physicalHeight"] doubleValue]));
664
613
  result[i] = displayObj;
665
614
  }
666
615
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  // Pure ScreenCaptureKit implementation - NO AVFoundation
4
4
  static SCStream * API_AVAILABLE(macos(12.3)) g_stream = nil;
5
- static id g_recordingOutput API_AVAILABLE(macos(15.0)) = nil;
5
+ static SCRecordingOutput * API_AVAILABLE(macos(15.0)) g_recordingOutput = nil;
6
6
  static id<SCStreamDelegate> API_AVAILABLE(macos(12.3)) g_streamDelegate = nil;
7
7
  static BOOL g_isRecording = NO;
8
8
  static BOOL g_isCleaningUp = NO; // Prevent recursive cleanup
@@ -42,8 +42,7 @@ static NSString *g_outputPath = nil;
42
42
 
43
43
  + (BOOL)isScreenCaptureKitAvailable {
44
44
  if (@available(macOS 15.0, *)) {
45
- Class recordingOutputClass = NSClassFromString(@"SCRecordingOutput");
46
- return [SCShareableContent class] != nil && [SCStream class] != nil && recordingOutputClass != nil;
45
+ return [SCShareableContent class] != nil && [SCStream class] != nil && [SCRecordingOutput class] != nil;
47
46
  }
48
47
  return NO;
49
48
  }
@@ -276,23 +275,17 @@ static NSString *g_outputPath = nil;
276
275
  }
277
276
 
278
277
  if (@available(macOS 15.0, *)) {
279
- // Create recording output configuration using runtime class lookup
280
- Class recordingConfigClass = NSClassFromString(@"SCRecordingOutputConfiguration");
281
- Class recordingOutputClass = NSClassFromString(@"SCRecordingOutput");
282
-
283
- if (recordingConfigClass && recordingOutputClass) {
284
- id recordingConfig = [[recordingConfigClass alloc] init];
285
- [recordingConfig setValue:outputURL forKey:@"outputURL"];
286
- // Use string constant for video codec
287
- [recordingConfig setValue:@"avc1" forKey:@"videoCodecType"];
288
-
289
- // Audio configuration - using available properties
290
- // Note: Specific audio routing handled by ScreenCaptureKit automatically
291
-
292
- // Create recording output with correct initializer
293
- g_recordingOutput = [[recordingOutputClass alloc] initWithConfiguration:recordingConfig
294
- delegate:nil];
295
- }
278
+ // Create recording output configuration
279
+ SCRecordingOutputConfiguration *recordingConfig = [[SCRecordingOutputConfiguration alloc] init];
280
+ recordingConfig.outputURL = outputURL;
281
+ recordingConfig.videoCodecType = AVVideoCodecTypeH264;
282
+
283
+ // Audio configuration - using available properties
284
+ // Note: Specific audio routing handled by ScreenCaptureKit automatically
285
+
286
+ // Create recording output with correct initializer
287
+ g_recordingOutput = [[SCRecordingOutput alloc] initWithConfiguration:recordingConfig
288
+ delegate:nil];
296
289
  if (shouldCaptureMic && shouldCaptureSystemAudio) {
297
290
  NSLog(@"🔧 Created SCRecordingOutput with microphone and system audio");
298
291
  } else if (shouldCaptureMic) {
@@ -327,9 +320,7 @@ static NSString *g_outputPath = nil;
327
320
  BOOL outputAdded = NO;
328
321
 
329
322
  if (@available(macOS 15.0, *)) {
330
- if (g_recordingOutput && [g_stream respondsToSelector:@selector(addRecordingOutput:error:)]) {
331
- outputAdded = [g_stream addRecordingOutput:g_recordingOutput error:&outputError];
332
- }
323
+ outputAdded = [g_stream addRecordingOutput:g_recordingOutput error:&outputError];
333
324
  }
334
325
 
335
326
  if (!outputAdded || outputError) {
@@ -1 +0,0 @@
1
- [{"x":661,"y":888,"timestamp":75,"unixTimeMs":1758662417142,"cursorType":"text","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}}]
@@ -1 +0,0 @@
1
- [{"x":661,"y":888,"timestamp":28,"unixTimeMs":1758662420161,"cursorType":"text","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":691,"y":857,"timestamp":468,"unixTimeMs":1758662420601,"cursorType":"text","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":796,"y":749,"timestamp":490,"unixTimeMs":1758662420623,"cursorType":"text","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":971,"y":567,"timestamp":515,"unixTimeMs":1758662420648,"cursorType":"text","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1262,"y":304,"timestamp":525,"unixTimeMs":1758662420658,"cursorType":"text","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1519,"y":95,"timestamp":583,"unixTimeMs":1758662420716,"cursorType":"pointer","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":0,"timestamp":621,"unixTimeMs":1758662420754,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1707,"y":0,"timestamp":1510,"unixTimeMs":1758662421643,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":0,"timestamp":1526,"unixTimeMs":1758662421659,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":0,"timestamp":1549,"unixTimeMs":1758662421682,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1705,"y":0,"timestamp":1633,"unixTimeMs":1758662421766,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":0,"timestamp":1653,"unixTimeMs":1758662421786,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1707,"y":0,"timestamp":1989,"unixTimeMs":1758662422122,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}}]
@@ -1 +0,0 @@
1
- [{"x":1709,"y":0,"timestamp":33,"unixTimeMs":1758662423222,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1707,"y":3,"timestamp":654,"unixTimeMs":1758662423843,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":8,"timestamp":677,"unixTimeMs":1758662423866,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":10,"timestamp":697,"unixTimeMs":1758662423886,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1703,"y":13,"timestamp":718,"unixTimeMs":1758662423907,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":2,"timestamp":780,"unixTimeMs":1758662423969,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":0,"timestamp":802,"unixTimeMs":1758662423991,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1706,"y":3,"timestamp":968,"unixTimeMs":1758662424157,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1698,"y":15,"timestamp":989,"unixTimeMs":1758662424178,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1691,"y":29,"timestamp":1016,"unixTimeMs":1758662424205,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1688,"y":36,"timestamp":1029,"unixTimeMs":1758662424218,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1687,"y":41,"timestamp":1056,"unixTimeMs":1758662424245,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1687,"y":42,"timestamp":1072,"unixTimeMs":1758662424261,"cursorType":"ns-resize","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1689,"y":38,"timestamp":1094,"unixTimeMs":1758662424283,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1700,"y":23,"timestamp":1116,"unixTimeMs":1758662424305,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":9,"timestamp":1134,"unixTimeMs":1758662424323,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":1,"timestamp":1157,"unixTimeMs":1758662424346,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1707,"y":1,"timestamp":1554,"unixTimeMs":1758662424743,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":5,"timestamp":1578,"unixTimeMs":1758662424767,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1694,"y":13,"timestamp":1594,"unixTimeMs":1758662424783,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1690,"y":19,"timestamp":1618,"unixTimeMs":1758662424807,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1685,"y":25,"timestamp":1634,"unixTimeMs":1758662424823,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1684,"y":28,"timestamp":1658,"unixTimeMs":1758662424847,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1686,"y":30,"timestamp":1700,"unixTimeMs":1758662424889,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1691,"y":30,"timestamp":1720,"unixTimeMs":1758662424909,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1699,"y":30,"timestamp":1746,"unixTimeMs":1758662424935,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":25,"timestamp":1764,"unixTimeMs":1758662424953,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":16,"timestamp":1783,"unixTimeMs":1758662424972,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":10,"timestamp":1808,"unixTimeMs":1758662424997,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":0,"timestamp":1825,"unixTimeMs":1758662425014,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":0,"timestamp":1890,"unixTimeMs":1758662425079,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1690,"y":1,"timestamp":1919,"unixTimeMs":1758662425108,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1682,"y":4,"timestamp":1930,"unixTimeMs":1758662425119,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1672,"y":12,"timestamp":1949,"unixTimeMs":1758662425138,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1669,"y":16,"timestamp":1976,"unixTimeMs":1758662425165,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1665,"y":22,"timestamp":1991,"unixTimeMs":1758662425180,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}}]
@@ -1 +0,0 @@
1
- [{"x":1698,"y":14,"timestamp":31,"unixTimeMs":1758662426275,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1701,"y":11,"timestamp":51,"unixTimeMs":1758662426295,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1705,"y":6,"timestamp":76,"unixTimeMs":1758662426320,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1708,"y":1,"timestamp":95,"unixTimeMs":1758662426339,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1706,"y":8,"timestamp":426,"unixTimeMs":1758662426670,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1703,"y":13,"timestamp":449,"unixTimeMs":1758662426693,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1701,"y":16,"timestamp":467,"unixTimeMs":1758662426711,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1699,"y":19,"timestamp":489,"unixTimeMs":1758662426733,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1701,"y":17,"timestamp":573,"unixTimeMs":1758662426817,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":15,"timestamp":595,"unixTimeMs":1758662426839,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":12,"timestamp":623,"unixTimeMs":1758662426867,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1705,"y":9,"timestamp":635,"unixTimeMs":1758662426879,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1707,"y":6,"timestamp":660,"unixTimeMs":1758662426904,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1708,"y":4,"timestamp":678,"unixTimeMs":1758662426922,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1708,"y":2,"timestamp":702,"unixTimeMs":1758662426946,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":0,"timestamp":744,"unixTimeMs":1758662426988,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1708,"y":3,"timestamp":890,"unixTimeMs":1758662427134,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1705,"y":8,"timestamp":917,"unixTimeMs":1758662427161,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":12,"timestamp":928,"unixTimeMs":1758662427172,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1701,"y":14,"timestamp":951,"unixTimeMs":1758662427195,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1705,"y":10,"timestamp":1036,"unixTimeMs":1758662427280,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":5,"timestamp":1058,"unixTimeMs":1758662427302,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":2,"timestamp":1079,"unixTimeMs":1758662427323,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":0,"timestamp":1100,"unixTimeMs":1758662427344,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1706,"y":5,"timestamp":1222,"unixTimeMs":1758662427466,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":8,"timestamp":1244,"unixTimeMs":1758662427488,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":13,"timestamp":1266,"unixTimeMs":1758662427510,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1701,"y":16,"timestamp":1288,"unixTimeMs":1758662427532,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":14,"timestamp":1371,"unixTimeMs":1758662427615,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1703,"y":12,"timestamp":1395,"unixTimeMs":1758662427639,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1705,"y":9,"timestamp":1432,"unixTimeMs":1758662427676,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1706,"y":6,"timestamp":1454,"unixTimeMs":1758662427698,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1706,"y":4,"timestamp":1494,"unixTimeMs":1758662427738,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":7,"timestamp":1561,"unixTimeMs":1758662427805,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":10,"timestamp":1578,"unixTimeMs":1758662427822,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1702,"y":12,"timestamp":1617,"unixTimeMs":1758662427861,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1704,"y":12,"timestamp":1661,"unixTimeMs":1758662427905,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1706,"y":12,"timestamp":1685,"unixTimeMs":1758662427929,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1708,"y":11,"timestamp":1726,"unixTimeMs":1758662427970,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":9,"timestamp":1748,"unixTimeMs":1758662427992,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":7,"timestamp":1769,"unixTimeMs":1758662428013,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1709,"y":5,"timestamp":1791,"unixTimeMs":1758662428035,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1707,"y":5,"timestamp":1850,"unixTimeMs":1758662428094,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}},{"x":1708,"y":3,"timestamp":1978,"unixTimeMs":1758662428222,"cursorType":"default","type":"move","coordinateSystem":"video-relative","recordingType":"display","videoInfo":{"width":1710,"height":1112,"offsetX":0,"offsetY":0},"displayInfo":{"displayId":1,"width":1710,"height":1112}}]