@camstack/addon-provider-hikvision 1.1.14 → 1.1.15
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
|
@@ -18102,7 +18102,10 @@ var AgentLoadSummarySchema = object({
|
|
|
18102
18102
|
online: boolean(),
|
|
18103
18103
|
load: RunnerLocalLoadSchema,
|
|
18104
18104
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
18105
|
-
score: number()
|
|
18105
|
+
score: number(),
|
|
18106
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
18107
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
18108
|
+
decodeHwaccel: string().nullable()
|
|
18106
18109
|
});
|
|
18107
18110
|
/**
|
|
18108
18111
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20778,7 +20781,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20778
20781
|
"libx264",
|
|
20779
20782
|
"libx265"
|
|
20780
20783
|
]);
|
|
20781
|
-
|
|
20784
|
+
object({
|
|
20782
20785
|
encoders: array(object({
|
|
20783
20786
|
encoder: HardwareEncoderIdSchema,
|
|
20784
20787
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20797,15 +20800,7 @@ var HardwareEncodersSchema = object({
|
|
|
20797
20800
|
defaultH265: HardwareEncoderIdSchema,
|
|
20798
20801
|
probedAt: number()
|
|
20799
20802
|
});
|
|
20800
|
-
|
|
20801
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20802
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20803
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20804
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20805
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20806
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20807
|
-
*/
|
|
20808
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20803
|
+
object({
|
|
20809
20804
|
methods: array(string()).readonly(),
|
|
20810
20805
|
probedAt: number()
|
|
20811
20806
|
});
|
|
@@ -20868,13 +20863,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20868
20863
|
format: ModelFormatSchema,
|
|
20869
20864
|
reason: string()
|
|
20870
20865
|
});
|
|
20871
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20872
|
-
kind: "mutation",
|
|
20873
|
-
auth: "admin"
|
|
20874
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20875
|
-
kind: "mutation",
|
|
20876
|
-
auth: "admin"
|
|
20877
|
-
});
|
|
20866
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20878
20867
|
var PtzPresetSchema = object({
|
|
20879
20868
|
id: string(),
|
|
20880
20869
|
name: string()
|
|
@@ -24777,30 +24766,6 @@ Object.freeze({
|
|
|
24777
24766
|
addonId: null,
|
|
24778
24767
|
access: "view"
|
|
24779
24768
|
},
|
|
24780
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24781
|
-
capName: "platform-probe",
|
|
24782
|
-
capScope: "system",
|
|
24783
|
-
addonId: null,
|
|
24784
|
-
access: "view"
|
|
24785
|
-
},
|
|
24786
|
-
"platformProbe.getHardwareEncoders": {
|
|
24787
|
-
capName: "platform-probe",
|
|
24788
|
-
capScope: "system",
|
|
24789
|
-
addonId: null,
|
|
24790
|
-
access: "view"
|
|
24791
|
-
},
|
|
24792
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24793
|
-
capName: "platform-probe",
|
|
24794
|
-
capScope: "system",
|
|
24795
|
-
addonId: null,
|
|
24796
|
-
access: "create"
|
|
24797
|
-
},
|
|
24798
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24799
|
-
capName: "platform-probe",
|
|
24800
|
-
capScope: "system",
|
|
24801
|
-
addonId: null,
|
|
24802
|
-
access: "create"
|
|
24803
|
-
},
|
|
24804
24769
|
"platformProbe.resolveHwAccel": {
|
|
24805
24770
|
capName: "platform-probe",
|
|
24806
24771
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -18103,7 +18103,10 @@ var AgentLoadSummarySchema = object({
|
|
|
18103
18103
|
online: boolean(),
|
|
18104
18104
|
load: RunnerLocalLoadSchema,
|
|
18105
18105
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
18106
|
-
score: number()
|
|
18106
|
+
score: number(),
|
|
18107
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
18108
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
18109
|
+
decodeHwaccel: string().nullable()
|
|
18107
18110
|
});
|
|
18108
18111
|
/**
|
|
18109
18112
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20779,7 +20782,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20779
20782
|
"libx264",
|
|
20780
20783
|
"libx265"
|
|
20781
20784
|
]);
|
|
20782
|
-
|
|
20785
|
+
object({
|
|
20783
20786
|
encoders: array(object({
|
|
20784
20787
|
encoder: HardwareEncoderIdSchema,
|
|
20785
20788
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20798,15 +20801,7 @@ var HardwareEncodersSchema = object({
|
|
|
20798
20801
|
defaultH265: HardwareEncoderIdSchema,
|
|
20799
20802
|
probedAt: number()
|
|
20800
20803
|
});
|
|
20801
|
-
|
|
20802
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20803
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20804
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20805
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20806
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20807
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20808
|
-
*/
|
|
20809
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20804
|
+
object({
|
|
20810
20805
|
methods: array(string()).readonly(),
|
|
20811
20806
|
probedAt: number()
|
|
20812
20807
|
});
|
|
@@ -20869,13 +20864,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20869
20864
|
format: ModelFormatSchema,
|
|
20870
20865
|
reason: string()
|
|
20871
20866
|
});
|
|
20872
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20873
|
-
kind: "mutation",
|
|
20874
|
-
auth: "admin"
|
|
20875
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20876
|
-
kind: "mutation",
|
|
20877
|
-
auth: "admin"
|
|
20878
|
-
});
|
|
20867
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20879
20868
|
var PtzPresetSchema = object({
|
|
20880
20869
|
id: string(),
|
|
20881
20870
|
name: string()
|
|
@@ -24778,30 +24767,6 @@ Object.freeze({
|
|
|
24778
24767
|
addonId: null,
|
|
24779
24768
|
access: "view"
|
|
24780
24769
|
},
|
|
24781
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24782
|
-
capName: "platform-probe",
|
|
24783
|
-
capScope: "system",
|
|
24784
|
-
addonId: null,
|
|
24785
|
-
access: "view"
|
|
24786
|
-
},
|
|
24787
|
-
"platformProbe.getHardwareEncoders": {
|
|
24788
|
-
capName: "platform-probe",
|
|
24789
|
-
capScope: "system",
|
|
24790
|
-
addonId: null,
|
|
24791
|
-
access: "view"
|
|
24792
|
-
},
|
|
24793
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24794
|
-
capName: "platform-probe",
|
|
24795
|
-
capScope: "system",
|
|
24796
|
-
addonId: null,
|
|
24797
|
-
access: "create"
|
|
24798
|
-
},
|
|
24799
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24800
|
-
capName: "platform-probe",
|
|
24801
|
-
capScope: "system",
|
|
24802
|
-
addonId: null,
|
|
24803
|
-
access: "create"
|
|
24804
|
-
},
|
|
24805
24770
|
"platformProbe.resolveHwAccel": {
|
|
24806
24771
|
capName: "platform-probe",
|
|
24807
24772
|
capScope: "system",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-hikvision",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.15",
|
|
4
4
|
"description": "Hikvision camera device provider addon for CamStack — ISAPI over HTTP(S) with digest auth (snapshot, alarm stream, RTSP discovery)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|