@livedesk/client 0.1.174 → 0.1.175
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 +1 -1
- package/bin/livedesk-client.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ Frame pipeline roadmap:
|
|
|
89
89
|
|
|
90
90
|
- Mode 1: `mode1-jpeg` - current test path using screen capture, resize, and JPEG binary frames.
|
|
91
91
|
- Mode 2: `mode2-lzo` - cross-platform wall path using independent RGB565LE frames capped at 320x180 and compressed as LZO1X blocks. The wall defaults to 8 fps. macOS and Linux keep one persistent local capture helper per client process. Legacy `mode2-lz4` settings migrate to this mode.
|
|
92
|
-
- Mode 3: `mode3-h264-hw` - OS-specific
|
|
92
|
+
- Mode 3: `mode3-h264-hw` - OS-specific H.264 path. Windows tries Media Foundation/NVENC/QSV/AMF, macOS prefers ScreenCaptureKit plus VideoToolbox, and Linux tries NVENC/VAAPI/QSV before falling back to the bundled ffmpeg `libx264` encoder. Linux users do not need to install ffmpeg separately when starting LiveDesk through the published npm package. macOS emits one startup key frame and then an approximately one-second GOP. The launcher uses bundled ffmpeg for fallback paths unless `LIVEDESK_FFMPEG` points to a custom binary. On macOS, set `LIVEDESK_FFMPEG_AVFOUNDATION_INPUT` only when the ScreenCaptureKit helper is unavailable and the AVFoundation fallback input is not `1:none`.
|
|
93
93
|
|
|
94
94
|
Legacy mode names such as `remote-fast` and `remote-quality` are treated as
|
|
95
95
|
Mode 1 aliases.
|
package/bin/livedesk-client.js
CHANGED
|
@@ -3772,7 +3772,7 @@ function buildFastEnvironment(prepared) {
|
|
|
3772
3772
|
env.LIVEDESK_FFMPEG_PATHS = merged.join(separator);
|
|
3773
3773
|
}
|
|
3774
3774
|
|
|
3775
|
-
if (process.platform === 'darwin' || env.LIVEDESK_DEBUG_FFMPEG === '1') {
|
|
3775
|
+
if (process.platform === 'darwin' || process.platform === 'linux' || env.LIVEDESK_DEBUG_FFMPEG === '1') {
|
|
3776
3776
|
const describe = path => path.includes('ffmpeg-static')
|
|
3777
3777
|
? 'ffmpeg-static'
|
|
3778
3778
|
: path.includes('@ffmpeg-installer')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livedesk/client",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.175",
|
|
4
4
|
"description": "LiveDesk local remote client",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"ws": "^8.18.3"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@livedesk/fast-linux-x64": "0.1.
|
|
43
|
-
"@livedesk/fast-osx-arm64": "0.1.
|
|
44
|
-
"@livedesk/fast-osx-x64": "0.1.
|
|
45
|
-
"@livedesk/fast-win-x64": "0.1.
|
|
42
|
+
"@livedesk/fast-linux-x64": "0.1.381",
|
|
43
|
+
"@livedesk/fast-osx-arm64": "0.1.381",
|
|
44
|
+
"@livedesk/fast-osx-x64": "0.1.381",
|
|
45
|
+
"@livedesk/fast-win-x64": "0.1.381"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|