@camstack/addon-provider-wyze 0.1.12 → 0.1.13
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/dist/addon.js +7 -42
- package/dist/addon.mjs +7 -42
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -17929,7 +17929,10 @@ var AgentLoadSummarySchema = object({
|
|
|
17929
17929
|
online: boolean(),
|
|
17930
17930
|
load: RunnerLocalLoadSchema,
|
|
17931
17931
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
17932
|
-
score: number()
|
|
17932
|
+
score: number(),
|
|
17933
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
17934
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
17935
|
+
decodeHwaccel: string().nullable()
|
|
17933
17936
|
});
|
|
17934
17937
|
/**
|
|
17935
17938
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20559,7 +20562,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20559
20562
|
"libx264",
|
|
20560
20563
|
"libx265"
|
|
20561
20564
|
]);
|
|
20562
|
-
|
|
20565
|
+
object({
|
|
20563
20566
|
encoders: array(object({
|
|
20564
20567
|
encoder: HardwareEncoderIdSchema,
|
|
20565
20568
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20578,15 +20581,7 @@ var HardwareEncodersSchema = object({
|
|
|
20578
20581
|
defaultH265: HardwareEncoderIdSchema,
|
|
20579
20582
|
probedAt: number()
|
|
20580
20583
|
});
|
|
20581
|
-
|
|
20582
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20583
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20584
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20585
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20586
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20587
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20588
|
-
*/
|
|
20589
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20584
|
+
object({
|
|
20590
20585
|
methods: array(string()).readonly(),
|
|
20591
20586
|
probedAt: number()
|
|
20592
20587
|
});
|
|
@@ -20649,13 +20644,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20649
20644
|
format: ModelFormatSchema,
|
|
20650
20645
|
reason: string()
|
|
20651
20646
|
});
|
|
20652
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20653
|
-
kind: "mutation",
|
|
20654
|
-
auth: "admin"
|
|
20655
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20656
|
-
kind: "mutation",
|
|
20657
|
-
auth: "admin"
|
|
20658
|
-
});
|
|
20647
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20659
20648
|
var PtzPresetSchema = object({
|
|
20660
20649
|
id: string(),
|
|
20661
20650
|
name: string()
|
|
@@ -24293,30 +24282,6 @@ Object.freeze({
|
|
|
24293
24282
|
addonId: null,
|
|
24294
24283
|
access: "view"
|
|
24295
24284
|
},
|
|
24296
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24297
|
-
capName: "platform-probe",
|
|
24298
|
-
capScope: "system",
|
|
24299
|
-
addonId: null,
|
|
24300
|
-
access: "view"
|
|
24301
|
-
},
|
|
24302
|
-
"platformProbe.getHardwareEncoders": {
|
|
24303
|
-
capName: "platform-probe",
|
|
24304
|
-
capScope: "system",
|
|
24305
|
-
addonId: null,
|
|
24306
|
-
access: "view"
|
|
24307
|
-
},
|
|
24308
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24309
|
-
capName: "platform-probe",
|
|
24310
|
-
capScope: "system",
|
|
24311
|
-
addonId: null,
|
|
24312
|
-
access: "create"
|
|
24313
|
-
},
|
|
24314
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24315
|
-
capName: "platform-probe",
|
|
24316
|
-
capScope: "system",
|
|
24317
|
-
addonId: null,
|
|
24318
|
-
access: "create"
|
|
24319
|
-
},
|
|
24320
24285
|
"platformProbe.resolveHwAccel": {
|
|
24321
24286
|
capName: "platform-probe",
|
|
24322
24287
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -17908,7 +17908,10 @@ var AgentLoadSummarySchema = object({
|
|
|
17908
17908
|
online: boolean(),
|
|
17909
17909
|
load: RunnerLocalLoadSchema,
|
|
17910
17910
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
17911
|
-
score: number()
|
|
17911
|
+
score: number(),
|
|
17912
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
17913
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
17914
|
+
decodeHwaccel: string().nullable()
|
|
17912
17915
|
});
|
|
17913
17916
|
/**
|
|
17914
17917
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20538,7 +20541,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20538
20541
|
"libx264",
|
|
20539
20542
|
"libx265"
|
|
20540
20543
|
]);
|
|
20541
|
-
|
|
20544
|
+
object({
|
|
20542
20545
|
encoders: array(object({
|
|
20543
20546
|
encoder: HardwareEncoderIdSchema,
|
|
20544
20547
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20557,15 +20560,7 @@ var HardwareEncodersSchema = object({
|
|
|
20557
20560
|
defaultH265: HardwareEncoderIdSchema,
|
|
20558
20561
|
probedAt: number()
|
|
20559
20562
|
});
|
|
20560
|
-
|
|
20561
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20562
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20563
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20564
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20565
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20566
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20567
|
-
*/
|
|
20568
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20563
|
+
object({
|
|
20569
20564
|
methods: array(string()).readonly(),
|
|
20570
20565
|
probedAt: number()
|
|
20571
20566
|
});
|
|
@@ -20628,13 +20623,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20628
20623
|
format: ModelFormatSchema,
|
|
20629
20624
|
reason: string()
|
|
20630
20625
|
});
|
|
20631
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20632
|
-
kind: "mutation",
|
|
20633
|
-
auth: "admin"
|
|
20634
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20635
|
-
kind: "mutation",
|
|
20636
|
-
auth: "admin"
|
|
20637
|
-
});
|
|
20626
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20638
20627
|
var PtzPresetSchema = object({
|
|
20639
20628
|
id: string(),
|
|
20640
20629
|
name: string()
|
|
@@ -24272,30 +24261,6 @@ Object.freeze({
|
|
|
24272
24261
|
addonId: null,
|
|
24273
24262
|
access: "view"
|
|
24274
24263
|
},
|
|
24275
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24276
|
-
capName: "platform-probe",
|
|
24277
|
-
capScope: "system",
|
|
24278
|
-
addonId: null,
|
|
24279
|
-
access: "view"
|
|
24280
|
-
},
|
|
24281
|
-
"platformProbe.getHardwareEncoders": {
|
|
24282
|
-
capName: "platform-probe",
|
|
24283
|
-
capScope: "system",
|
|
24284
|
-
addonId: null,
|
|
24285
|
-
access: "view"
|
|
24286
|
-
},
|
|
24287
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24288
|
-
capName: "platform-probe",
|
|
24289
|
-
capScope: "system",
|
|
24290
|
-
addonId: null,
|
|
24291
|
-
access: "create"
|
|
24292
|
-
},
|
|
24293
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24294
|
-
capName: "platform-probe",
|
|
24295
|
-
capScope: "system",
|
|
24296
|
-
addonId: null,
|
|
24297
|
-
access: "create"
|
|
24298
|
-
},
|
|
24299
24264
|
"platformProbe.resolveHwAccel": {
|
|
24300
24265
|
capName: "platform-probe",
|
|
24301
24266
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-wyze",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Wyze camera device-provider addon for CamStack — wraps the @apocaliss92/wyze-bridge-js P2P/DTLS client, feeding the stream-broker via the pull-rfc4571 lazy-publish path (a structural twin of addon-provider-reolink)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|