@camstack/addon-provider-rtsp 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
|
@@ -17915,7 +17915,10 @@ var AgentLoadSummarySchema = object({
|
|
|
17915
17915
|
online: boolean(),
|
|
17916
17916
|
load: RunnerLocalLoadSchema,
|
|
17917
17917
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
17918
|
-
score: number()
|
|
17918
|
+
score: number(),
|
|
17919
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
17920
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
17921
|
+
decodeHwaccel: string().nullable()
|
|
17919
17922
|
});
|
|
17920
17923
|
/**
|
|
17921
17924
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20494,7 +20497,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20494
20497
|
"libx264",
|
|
20495
20498
|
"libx265"
|
|
20496
20499
|
]);
|
|
20497
|
-
|
|
20500
|
+
object({
|
|
20498
20501
|
encoders: array(object({
|
|
20499
20502
|
encoder: HardwareEncoderIdSchema,
|
|
20500
20503
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20513,15 +20516,7 @@ var HardwareEncodersSchema = object({
|
|
|
20513
20516
|
defaultH265: HardwareEncoderIdSchema,
|
|
20514
20517
|
probedAt: number()
|
|
20515
20518
|
});
|
|
20516
|
-
|
|
20517
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20518
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20519
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20520
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20521
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20522
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20523
|
-
*/
|
|
20524
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20519
|
+
object({
|
|
20525
20520
|
methods: array(string()).readonly(),
|
|
20526
20521
|
probedAt: number()
|
|
20527
20522
|
});
|
|
@@ -20584,13 +20579,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20584
20579
|
format: ModelFormatSchema,
|
|
20585
20580
|
reason: string()
|
|
20586
20581
|
});
|
|
20587
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20588
|
-
kind: "mutation",
|
|
20589
|
-
auth: "admin"
|
|
20590
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20591
|
-
kind: "mutation",
|
|
20592
|
-
auth: "admin"
|
|
20593
|
-
});
|
|
20582
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20594
20583
|
var PtzPresetSchema = object({
|
|
20595
20584
|
id: string(),
|
|
20596
20585
|
name: string()
|
|
@@ -24228,30 +24217,6 @@ Object.freeze({
|
|
|
24228
24217
|
addonId: null,
|
|
24229
24218
|
access: "view"
|
|
24230
24219
|
},
|
|
24231
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24232
|
-
capName: "platform-probe",
|
|
24233
|
-
capScope: "system",
|
|
24234
|
-
addonId: null,
|
|
24235
|
-
access: "view"
|
|
24236
|
-
},
|
|
24237
|
-
"platformProbe.getHardwareEncoders": {
|
|
24238
|
-
capName: "platform-probe",
|
|
24239
|
-
capScope: "system",
|
|
24240
|
-
addonId: null,
|
|
24241
|
-
access: "view"
|
|
24242
|
-
},
|
|
24243
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24244
|
-
capName: "platform-probe",
|
|
24245
|
-
capScope: "system",
|
|
24246
|
-
addonId: null,
|
|
24247
|
-
access: "create"
|
|
24248
|
-
},
|
|
24249
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24250
|
-
capName: "platform-probe",
|
|
24251
|
-
capScope: "system",
|
|
24252
|
-
addonId: null,
|
|
24253
|
-
access: "create"
|
|
24254
|
-
},
|
|
24255
24220
|
"platformProbe.resolveHwAccel": {
|
|
24256
24221
|
capName: "platform-probe",
|
|
24257
24222
|
capScope: "system",
|
package/dist/addon.mjs
CHANGED
|
@@ -17914,7 +17914,10 @@ var AgentLoadSummarySchema = object({
|
|
|
17914
17914
|
online: boolean(),
|
|
17915
17915
|
load: RunnerLocalLoadSchema,
|
|
17916
17916
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
17917
|
-
score: number()
|
|
17917
|
+
score: number(),
|
|
17918
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
17919
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
17920
|
+
decodeHwaccel: string().nullable()
|
|
17918
17921
|
});
|
|
17919
17922
|
/**
|
|
17920
17923
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -20493,7 +20496,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
20493
20496
|
"libx264",
|
|
20494
20497
|
"libx265"
|
|
20495
20498
|
]);
|
|
20496
|
-
|
|
20499
|
+
object({
|
|
20497
20500
|
encoders: array(object({
|
|
20498
20501
|
encoder: HardwareEncoderIdSchema,
|
|
20499
20502
|
codec: _enum(["H264", "H265"]),
|
|
@@ -20512,15 +20515,7 @@ var HardwareEncodersSchema = object({
|
|
|
20512
20515
|
defaultH265: HardwareEncoderIdSchema,
|
|
20513
20516
|
probedAt: number()
|
|
20514
20517
|
});
|
|
20515
|
-
|
|
20516
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
20517
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
20518
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
20519
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
20520
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
20521
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
20522
|
-
*/
|
|
20523
|
-
var HardwareDecodeAccelsSchema = object({
|
|
20518
|
+
object({
|
|
20524
20519
|
methods: array(string()).readonly(),
|
|
20525
20520
|
probedAt: number()
|
|
20526
20521
|
});
|
|
@@ -20583,13 +20578,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
20583
20578
|
format: ModelFormatSchema,
|
|
20584
20579
|
reason: string()
|
|
20585
20580
|
});
|
|
20586
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
20587
|
-
kind: "mutation",
|
|
20588
|
-
auth: "admin"
|
|
20589
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
20590
|
-
kind: "mutation",
|
|
20591
|
-
auth: "admin"
|
|
20592
|
-
});
|
|
20581
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
20593
20582
|
var PtzPresetSchema = object({
|
|
20594
20583
|
id: string(),
|
|
20595
20584
|
name: string()
|
|
@@ -24227,30 +24216,6 @@ Object.freeze({
|
|
|
24227
24216
|
addonId: null,
|
|
24228
24217
|
access: "view"
|
|
24229
24218
|
},
|
|
24230
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
24231
|
-
capName: "platform-probe",
|
|
24232
|
-
capScope: "system",
|
|
24233
|
-
addonId: null,
|
|
24234
|
-
access: "view"
|
|
24235
|
-
},
|
|
24236
|
-
"platformProbe.getHardwareEncoders": {
|
|
24237
|
-
capName: "platform-probe",
|
|
24238
|
-
capScope: "system",
|
|
24239
|
-
addonId: null,
|
|
24240
|
-
access: "view"
|
|
24241
|
-
},
|
|
24242
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
24243
|
-
capName: "platform-probe",
|
|
24244
|
-
capScope: "system",
|
|
24245
|
-
addonId: null,
|
|
24246
|
-
access: "create"
|
|
24247
|
-
},
|
|
24248
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
24249
|
-
capName: "platform-probe",
|
|
24250
|
-
capScope: "system",
|
|
24251
|
-
addonId: null,
|
|
24252
|
-
access: "create"
|
|
24253
|
-
},
|
|
24254
24219
|
"platformProbe.resolveHwAccel": {
|
|
24255
24220
|
capName: "platform-probe",
|
|
24256
24221
|
capScope: "system",
|