@livedesk/client 0.1.30 → 0.1.32
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/bin/livedesk-client-node.js +1 -0
- package/bin/livedesk-client.js +8 -8
- package/fast/linux-x64/{mindexec-remote-fast → livedesk-client-fast} +0 -0
- package/fast/linux-x64/{mindexec-remote-fast.deps.json → livedesk-client-fast.deps.json} +3 -3
- package/fast/{osx-arm64/mindexec-remote-fast.dll → linux-x64/livedesk-client-fast.dll} +0 -0
- package/fast/linux-x64/{mindexec-remote-fast.pdb → livedesk-client-fast.pdb} +0 -0
- package/fast/osx-arm64/{mindexec-remote-fast → livedesk-client-fast} +0 -0
- package/fast/osx-arm64/{mindexec-remote-fast.deps.json → livedesk-client-fast.deps.json} +3 -3
- package/fast/{osx-x64/mindexec-remote-fast.dll → osx-arm64/livedesk-client-fast.dll} +0 -0
- package/fast/osx-arm64/{mindexec-remote-fast.pdb → livedesk-client-fast.pdb} +0 -0
- package/fast/osx-x64/{mindexec-remote-fast → livedesk-client-fast} +0 -0
- package/fast/osx-x64/{mindexec-remote-fast.deps.json → livedesk-client-fast.deps.json} +3 -3
- package/fast/{linux-x64/mindexec-remote-fast.dll → osx-x64/livedesk-client-fast.dll} +0 -0
- package/fast/osx-x64/{mindexec-remote-fast.pdb → livedesk-client-fast.pdb} +0 -0
- package/fast/win-x64/{mindexec-remote-fast.deps.json → livedesk-client-fast.deps.json} +3 -3
- package/fast/win-x64/{mindexec-remote-fast.dll → livedesk-client-fast.dll} +0 -0
- package/fast/win-x64/{mindexec-remote-fast.exe → livedesk-client-fast.exe} +0 -0
- package/fast/win-x64/{mindexec-remote-fast.pdb → livedesk-client-fast.pdb} +0 -0
- package/package.json +1 -1
- /package/fast/linux-x64/{mindexec-remote-fast.runtimeconfig.json → livedesk-client-fast.runtimeconfig.json} +0 -0
- /package/fast/osx-arm64/{mindexec-remote-fast.runtimeconfig.json → livedesk-client-fast.runtimeconfig.json} +0 -0
- /package/fast/osx-x64/{mindexec-remote-fast.runtimeconfig.json → livedesk-client-fast.runtimeconfig.json} +0 -0
- /package/fast/win-x64/{mindexec-remote-fast.runtimeconfig.json → livedesk-client-fast.runtimeconfig.json} +0 -0
|
@@ -720,6 +720,7 @@ function startLiveStream(socket, options, message, nextFrameSeq, activeStreams)
|
|
|
720
720
|
frameDrops: 0,
|
|
721
721
|
timer: null
|
|
722
722
|
};
|
|
723
|
+
console.log('전송모드 - mode1-jpeg (Mode 1 - Test JPEG Binary)');
|
|
723
724
|
|
|
724
725
|
const captureAndSend = async () => {
|
|
725
726
|
if (stream.stopped || stream.inFlight || socket.destroyed) {
|
package/bin/livedesk-client.js
CHANGED
|
@@ -703,29 +703,29 @@ function getFastRuntime() {
|
|
|
703
703
|
if (platform === 'win32' && arch === 'x64') {
|
|
704
704
|
return {
|
|
705
705
|
rid: 'win-x64',
|
|
706
|
-
executable: join(packageRoot, 'fast', 'win-x64', '
|
|
707
|
-
dll: join(packageRoot, 'fast', 'win-x64', '
|
|
706
|
+
executable: join(packageRoot, 'fast', 'win-x64', 'livedesk-client-fast.exe'),
|
|
707
|
+
dll: join(packageRoot, 'fast', 'win-x64', 'livedesk-client-fast.dll')
|
|
708
708
|
};
|
|
709
709
|
}
|
|
710
710
|
if (platform === 'darwin' && arch === 'arm64') {
|
|
711
711
|
return {
|
|
712
712
|
rid: 'osx-arm64',
|
|
713
|
-
executable: join(packageRoot, 'fast', 'osx-arm64', '
|
|
714
|
-
dll: join(packageRoot, 'fast', 'osx-arm64', '
|
|
713
|
+
executable: join(packageRoot, 'fast', 'osx-arm64', 'livedesk-client-fast'),
|
|
714
|
+
dll: join(packageRoot, 'fast', 'osx-arm64', 'livedesk-client-fast.dll')
|
|
715
715
|
};
|
|
716
716
|
}
|
|
717
717
|
if (platform === 'darwin' && arch === 'x64') {
|
|
718
718
|
return {
|
|
719
719
|
rid: 'osx-x64',
|
|
720
|
-
executable: join(packageRoot, 'fast', 'osx-x64', '
|
|
721
|
-
dll: join(packageRoot, 'fast', 'osx-x64', '
|
|
720
|
+
executable: join(packageRoot, 'fast', 'osx-x64', 'livedesk-client-fast'),
|
|
721
|
+
dll: join(packageRoot, 'fast', 'osx-x64', 'livedesk-client-fast.dll')
|
|
722
722
|
};
|
|
723
723
|
}
|
|
724
724
|
if (platform === 'linux' && arch === 'x64') {
|
|
725
725
|
return {
|
|
726
726
|
rid: 'linux-x64',
|
|
727
|
-
executable: join(packageRoot, 'fast', 'linux-x64', '
|
|
728
|
-
dll: join(packageRoot, 'fast', 'linux-x64', '
|
|
727
|
+
executable: join(packageRoot, 'fast', 'linux-x64', 'livedesk-client-fast'),
|
|
728
|
+
dll: join(packageRoot, 'fast', 'linux-x64', 'livedesk-client-fast.dll')
|
|
729
729
|
};
|
|
730
730
|
}
|
|
731
731
|
|
|
Binary file
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v9.0": {},
|
|
9
9
|
".NETCoreApp,Version=v9.0/linux-x64": {
|
|
10
|
-
"
|
|
10
|
+
"livedesk-client-fast/1.0.0": {
|
|
11
11
|
"runtime": {
|
|
12
|
-
"
|
|
12
|
+
"livedesk-client-fast.dll": {}
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"libraries": {
|
|
18
|
-
"
|
|
18
|
+
"livedesk-client-fast/1.0.0": {
|
|
19
19
|
"type": "project",
|
|
20
20
|
"serviceable": false,
|
|
21
21
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v9.0": {},
|
|
9
9
|
".NETCoreApp,Version=v9.0/osx-arm64": {
|
|
10
|
-
"
|
|
10
|
+
"livedesk-client-fast/1.0.0": {
|
|
11
11
|
"runtime": {
|
|
12
|
-
"
|
|
12
|
+
"livedesk-client-fast.dll": {}
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"libraries": {
|
|
18
|
-
"
|
|
18
|
+
"livedesk-client-fast/1.0.0": {
|
|
19
19
|
"type": "project",
|
|
20
20
|
"serviceable": false,
|
|
21
21
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v9.0": {},
|
|
9
9
|
".NETCoreApp,Version=v9.0/osx-x64": {
|
|
10
|
-
"
|
|
10
|
+
"livedesk-client-fast/1.0.0": {
|
|
11
11
|
"runtime": {
|
|
12
|
-
"
|
|
12
|
+
"livedesk-client-fast.dll": {}
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"libraries": {
|
|
18
|
-
"
|
|
18
|
+
"livedesk-client-fast/1.0.0": {
|
|
19
19
|
"type": "project",
|
|
20
20
|
"serviceable": false,
|
|
21
21
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v9.0": {},
|
|
9
9
|
".NETCoreApp,Version=v9.0/win-x64": {
|
|
10
|
-
"
|
|
10
|
+
"livedesk-client-fast/1.0.0": {
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"NAudio": "2.2.1"
|
|
13
13
|
},
|
|
14
14
|
"runtime": {
|
|
15
|
-
"
|
|
15
|
+
"livedesk-client-fast.dll": {}
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"NAudio/2.2.1": {
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
99
|
"libraries": {
|
|
100
|
-
"
|
|
100
|
+
"livedesk-client-fast/1.0.0": {
|
|
101
101
|
"type": "project",
|
|
102
102
|
"serviceable": false,
|
|
103
103
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|