@camstack/addon-provider-reolink 1.1.16 → 1.1.17
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
|
@@ -18146,7 +18146,10 @@ var AgentLoadSummarySchema = object({
|
|
|
18146
18146
|
online: boolean(),
|
|
18147
18147
|
load: RunnerLocalLoadSchema,
|
|
18148
18148
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
18149
|
-
score: number()
|
|
18149
|
+
score: number(),
|
|
18150
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
18151
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
18152
|
+
decodeHwaccel: string().nullable()
|
|
18150
18153
|
});
|
|
18151
18154
|
/**
|
|
18152
18155
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20776,7 +20779,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20776
20779
|
"libx264",
|
|
20777
20780
|
"libx265"
|
|
20778
20781
|
]);
|
|
20779
|
-
|
|
20782
|
+
object({
|
|
20780
20783
|
encoders: array(object({
|
|
20781
20784
|
encoder: HardwareEncoderIdSchema,
|
|
20782
20785
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20795,15 +20798,7 @@ var HardwareEncodersSchema = object({
|
|
|
20795
20798
|
defaultH265: HardwareEncoderIdSchema,
|
|
20796
20799
|
probedAt: number()
|
|
20797
20800
|
});
|
|
20798
|
-
|
|
20799
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20800
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20801
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20802
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20803
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20804
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20805
|
-
*/
|
|
20806
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20801
|
+
object({
|
|
20807
20802
|
methods: array(string()).readonly(),
|
|
20808
20803
|
probedAt: number()
|
|
20809
20804
|
});
|
|
@@ -20866,13 +20861,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20866
20861
|
format: ModelFormatSchema,
|
|
20867
20862
|
reason: string()
|
|
20868
20863
|
});
|
|
20869
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20870
|
-
kind: "mutation",
|
|
20871
|
-
auth: "admin"
|
|
20872
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20873
|
-
kind: "mutation",
|
|
20874
|
-
auth: "admin"
|
|
20875
|
-
});
|
|
20864
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20876
20865
|
var PtzPresetSchema = object({
|
|
20877
20866
|
id: string(),
|
|
20878
20867
|
name: string()
|
|
@@ -24775,30 +24764,6 @@ Object.freeze({
|
|
|
24775
24764
|
addonId: null,
|
|
24776
24765
|
access: "view"
|
|
24777
24766
|
},
|
|
24778
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24779
|
-
capName: "platform-probe",
|
|
24780
|
-
capScope: "system",
|
|
24781
|
-
addonId: null,
|
|
24782
|
-
access: "view"
|
|
24783
|
-
},
|
|
24784
|
-
"platformProbe.getHardwareEncoders": {
|
|
24785
|
-
capName: "platform-probe",
|
|
24786
|
-
capScope: "system",
|
|
24787
|
-
addonId: null,
|
|
24788
|
-
access: "view"
|
|
24789
|
-
},
|
|
24790
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24791
|
-
capName: "platform-probe",
|
|
24792
|
-
capScope: "system",
|
|
24793
|
-
addonId: null,
|
|
24794
|
-
access: "create"
|
|
24795
|
-
},
|
|
24796
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24797
|
-
capName: "platform-probe",
|
|
24798
|
-
capScope: "system",
|
|
24799
|
-
addonId: null,
|
|
24800
|
-
access: "create"
|
|
24801
|
-
},
|
|
24802
24767
|
"platformProbe.resolveHwAccel": {
|
|
24803
24768
|
capName: "platform-probe",
|
|
24804
24769
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -18141,7 +18141,10 @@ var AgentLoadSummarySchema = object({
|
|
|
18141
18141
|
online: boolean(),
|
|
18142
18142
|
load: RunnerLocalLoadSchema,
|
|
18143
18143
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
18144
|
-
score: number()
|
|
18144
|
+
score: number(),
|
|
18145
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
18146
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
18147
|
+
decodeHwaccel: string().nullable()
|
|
18145
18148
|
});
|
|
18146
18149
|
/**
|
|
18147
18150
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20771,7 +20774,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20771
20774
|
"libx264",
|
|
20772
20775
|
"libx265"
|
|
20773
20776
|
]);
|
|
20774
|
-
|
|
20777
|
+
object({
|
|
20775
20778
|
encoders: array(object({
|
|
20776
20779
|
encoder: HardwareEncoderIdSchema,
|
|
20777
20780
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20790,15 +20793,7 @@ var HardwareEncodersSchema = object({
|
|
|
20790
20793
|
defaultH265: HardwareEncoderIdSchema,
|
|
20791
20794
|
probedAt: number()
|
|
20792
20795
|
});
|
|
20793
|
-
|
|
20794
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20795
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20796
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20797
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20798
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20799
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20800
|
-
*/
|
|
20801
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20796
|
+
object({
|
|
20802
20797
|
methods: array(string()).readonly(),
|
|
20803
20798
|
probedAt: number()
|
|
20804
20799
|
});
|
|
@@ -20861,13 +20856,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20861
20856
|
format: ModelFormatSchema,
|
|
20862
20857
|
reason: string()
|
|
20863
20858
|
});
|
|
20864
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20865
|
-
kind: "mutation",
|
|
20866
|
-
auth: "admin"
|
|
20867
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20868
|
-
kind: "mutation",
|
|
20869
|
-
auth: "admin"
|
|
20870
|
-
});
|
|
20859
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20871
20860
|
var PtzPresetSchema = object({
|
|
20872
20861
|
id: string(),
|
|
20873
20862
|
name: string()
|
|
@@ -24770,30 +24759,6 @@ Object.freeze({
|
|
|
24770
24759
|
addonId: null,
|
|
24771
24760
|
access: "view"
|
|
24772
24761
|
},
|
|
24773
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24774
|
-
capName: "platform-probe",
|
|
24775
|
-
capScope: "system",
|
|
24776
|
-
addonId: null,
|
|
24777
|
-
access: "view"
|
|
24778
|
-
},
|
|
24779
|
-
"platformProbe.getHardwareEncoders": {
|
|
24780
|
-
capName: "platform-probe",
|
|
24781
|
-
capScope: "system",
|
|
24782
|
-
addonId: null,
|
|
24783
|
-
access: "view"
|
|
24784
|
-
},
|
|
24785
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24786
|
-
capName: "platform-probe",
|
|
24787
|
-
capScope: "system",
|
|
24788
|
-
addonId: null,
|
|
24789
|
-
access: "create"
|
|
24790
|
-
},
|
|
24791
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24792
|
-
capName: "platform-probe",
|
|
24793
|
-
capScope: "system",
|
|
24794
|
-
addonId: null,
|
|
24795
|
-
access: "create"
|
|
24796
|
-
},
|
|
24797
24762
|
"platformProbe.resolveHwAccel": {
|
|
24798
24763
|
capName: "platform-probe",
|
|
24799
24764
|
capScope: "system",
|