@livedesk/client 0.1.25 → 0.1.26

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/README.md CHANGED
@@ -53,3 +53,12 @@ npx @livedesk/client --engine fast --trace-frames
53
53
  npx @livedesk/client --auth-port 5200
54
54
  npx @livedesk/client --logout
55
55
  ```
56
+
57
+ Frame pipeline roadmap:
58
+
59
+ - Mode 1: `mode1-jpeg` - current test path using screen capture, resize, and JPEG binary frames.
60
+ - Mode 2: `mode2-lz4` - planned raw/tile delta frames compressed with LZ4.
61
+ - Mode 3: `mode3-h264-hw` - planned GPU capture to hardware H.264 encoding.
62
+
63
+ Legacy mode names such as `remote-fast` and `remote-quality` are treated as
64
+ Mode 1 aliases.
@@ -747,7 +747,7 @@ function startLiveStream(socket, options, message, nextFrameSeq, activeStreams)
747
747
  mimeType: frame.mimeType,
748
748
  capturedAt: frame.capturedAt,
749
749
  fps,
750
- mode: 'remote-fast',
750
+ mode: 'mode1-jpeg',
751
751
  droppedByAgent: stream.frameDrops,
752
752
  data: frame.data
753
753
  });
@@ -919,7 +919,7 @@ async function handleRemoteCommand(socket, options, message, nextFrameSeq, activ
919
919
  streamId: started.streamId,
920
920
  fps: started.fps,
921
921
  intervalMs: started.intervalMs,
922
- mode: 'remote-fast',
922
+ mode: 'mode1-jpeg',
923
923
  viewOnly: true,
924
924
  inputControl: false,
925
925
  startedAt: new Date().toISOString()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livedesk/client",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "LiveDesk local remote client",
5
5
  "type": "module",
6
6
  "bin": {