@camstack/addon-static-turn 1.1.15 → 1.1.16
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/static-turn.addon.js +7 -42
- package/dist/static-turn.addon.mjs +7 -42
- package/package.json +1 -1
|
@@ -14956,7 +14956,10 @@ var AgentLoadSummarySchema = object({
|
|
|
14956
14956
|
online: boolean(),
|
|
14957
14957
|
load: RunnerLocalLoadSchema,
|
|
14958
14958
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
14959
|
-
score: number()
|
|
14959
|
+
score: number(),
|
|
14960
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
14961
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
14962
|
+
decodeHwaccel: string().nullable()
|
|
14960
14963
|
});
|
|
14961
14964
|
/**
|
|
14962
14965
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17515,7 +17518,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17515
17518
|
"libx264",
|
|
17516
17519
|
"libx265"
|
|
17517
17520
|
]);
|
|
17518
|
-
|
|
17521
|
+
object({
|
|
17519
17522
|
encoders: array(object({
|
|
17520
17523
|
encoder: HardwareEncoderIdSchema,
|
|
17521
17524
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17534,15 +17537,7 @@ var HardwareEncodersSchema = object({
|
|
|
17534
17537
|
defaultH265: HardwareEncoderIdSchema,
|
|
17535
17538
|
probedAt: number()
|
|
17536
17539
|
});
|
|
17537
|
-
|
|
17538
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17539
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17540
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17541
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17542
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17543
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17544
|
-
*/
|
|
17545
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17540
|
+
object({
|
|
17546
17541
|
methods: array(string()).readonly(),
|
|
17547
17542
|
probedAt: number()
|
|
17548
17543
|
});
|
|
@@ -17605,13 +17600,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17605
17600
|
format: ModelFormatSchema,
|
|
17606
17601
|
reason: string()
|
|
17607
17602
|
});
|
|
17608
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17609
|
-
kind: "mutation",
|
|
17610
|
-
auth: "admin"
|
|
17611
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17612
|
-
kind: "mutation",
|
|
17613
|
-
auth: "admin"
|
|
17614
|
-
});
|
|
17603
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17615
17604
|
var PtzPresetSchema = object({
|
|
17616
17605
|
id: string(),
|
|
17617
17606
|
name: string()
|
|
@@ -21236,30 +21225,6 @@ Object.freeze({
|
|
|
21236
21225
|
addonId: null,
|
|
21237
21226
|
access: "view"
|
|
21238
21227
|
},
|
|
21239
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21240
|
-
capName: "platform-probe",
|
|
21241
|
-
capScope: "system",
|
|
21242
|
-
addonId: null,
|
|
21243
|
-
access: "view"
|
|
21244
|
-
},
|
|
21245
|
-
"platformProbe.getHardwareEncoders": {
|
|
21246
|
-
capName: "platform-probe",
|
|
21247
|
-
capScope: "system",
|
|
21248
|
-
addonId: null,
|
|
21249
|
-
access: "view"
|
|
21250
|
-
},
|
|
21251
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21252
|
-
capName: "platform-probe",
|
|
21253
|
-
capScope: "system",
|
|
21254
|
-
addonId: null,
|
|
21255
|
-
access: "create"
|
|
21256
|
-
},
|
|
21257
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21258
|
-
capName: "platform-probe",
|
|
21259
|
-
capScope: "system",
|
|
21260
|
-
addonId: null,
|
|
21261
|
-
access: "create"
|
|
21262
|
-
},
|
|
21263
21228
|
"platformProbe.resolveHwAccel": {
|
|
21264
21229
|
capName: "platform-probe",
|
|
21265
21230
|
capScope: "system",
|
|
@@ -14955,7 +14955,10 @@ var AgentLoadSummarySchema = object({
|
|
|
14955
14955
|
online: boolean(),
|
|
14956
14956
|
load: RunnerLocalLoadSchema,
|
|
14957
14957
|
/** Computed score used by the L2 capacity balancer (lower = less loaded). */
|
|
14958
|
-
score: number()
|
|
14958
|
+
score: number(),
|
|
14959
|
+
/** This node's decode hwaccel backend (per-node `probedBestHwaccel`), or null
|
|
14960
|
+
* when not yet probed — for the cluster Pipeline table UI (P0.2). */
|
|
14961
|
+
decodeHwaccel: string().nullable()
|
|
14959
14962
|
});
|
|
14960
14963
|
/**
|
|
14961
14964
|
* Aggregate metrics across the whole detection cluster. Replaces the legacy
|
|
@@ -17514,7 +17517,7 @@ var HardwareEncoderIdSchema = _enum([
|
|
|
17514
17517
|
"libx264",
|
|
17515
17518
|
"libx265"
|
|
17516
17519
|
]);
|
|
17517
|
-
|
|
17520
|
+
object({
|
|
17518
17521
|
encoders: array(object({
|
|
17519
17522
|
encoder: HardwareEncoderIdSchema,
|
|
17520
17523
|
codec: _enum(["H264", "H265"]),
|
|
@@ -17533,15 +17536,7 @@ var HardwareEncodersSchema = object({
|
|
|
17533
17536
|
defaultH265: HardwareEncoderIdSchema,
|
|
17534
17537
|
probedAt: number()
|
|
17535
17538
|
});
|
|
17536
|
-
|
|
17537
|
-
* Decode-side companion to {@link HardwareEncodersSchema}: the `-hwaccel`
|
|
17538
|
-
* methods the configured ffmpeg binary actually supports (parsed from
|
|
17539
|
-
* `ffmpeg -hwaccels`). Used to gate decode-hwaccel attempts so the transcode
|
|
17540
|
-
* egress never spends a spawn on a backend this build cannot offer. Per-stream
|
|
17541
|
-
* decode fragility (e.g. VideoToolbox HEVC) is still handled by the egress's
|
|
17542
|
-
* software fallback — this only filters out wholly-unsupported backends.
|
|
17543
|
-
*/
|
|
17544
|
-
var HardwareDecodeAccelsSchema = object({
|
|
17539
|
+
object({
|
|
17545
17540
|
methods: array(string()).readonly(),
|
|
17546
17541
|
probedAt: number()
|
|
17547
17542
|
});
|
|
@@ -17604,13 +17599,7 @@ var ResolvedInferenceConfigSchema = object({
|
|
|
17604
17599
|
format: ModelFormatSchema,
|
|
17605
17600
|
reason: string()
|
|
17606
17601
|
});
|
|
17607
|
-
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema)
|
|
17608
|
-
kind: "mutation",
|
|
17609
|
-
auth: "admin"
|
|
17610
|
-
}), method(_void(), HardwareDecodeAccelsSchema), method(_void(), HardwareDecodeAccelsSchema, {
|
|
17611
|
-
kind: "mutation",
|
|
17612
|
-
auth: "admin"
|
|
17613
|
-
});
|
|
17602
|
+
method(_void(), PlatformCapabilitiesSchema), method(_void(), HardwareInfoSchema), method(object({ requirements: array(ModelRequirementSchema).readonly() }), ResolvedInferenceConfigSchema), method(object({ prefer: HwAccelBackendInputSchema }), HwAccelResolutionSchema);
|
|
17614
17603
|
var PtzPresetSchema = object({
|
|
17615
17604
|
id: string(),
|
|
17616
17605
|
name: string()
|
|
@@ -21235,30 +21224,6 @@ Object.freeze({
|
|
|
21235
21224
|
addonId: null,
|
|
21236
21225
|
access: "view"
|
|
21237
21226
|
},
|
|
21238
|
-
"platformProbe.getHardwareDecodeAccels": {
|
|
21239
|
-
capName: "platform-probe",
|
|
21240
|
-
capScope: "system",
|
|
21241
|
-
addonId: null,
|
|
21242
|
-
access: "view"
|
|
21243
|
-
},
|
|
21244
|
-
"platformProbe.getHardwareEncoders": {
|
|
21245
|
-
capName: "platform-probe",
|
|
21246
|
-
capScope: "system",
|
|
21247
|
-
addonId: null,
|
|
21248
|
-
access: "view"
|
|
21249
|
-
},
|
|
21250
|
-
"platformProbe.refreshHardwareDecodeAccels": {
|
|
21251
|
-
capName: "platform-probe",
|
|
21252
|
-
capScope: "system",
|
|
21253
|
-
addonId: null,
|
|
21254
|
-
access: "create"
|
|
21255
|
-
},
|
|
21256
|
-
"platformProbe.refreshHardwareEncoders": {
|
|
21257
|
-
capName: "platform-probe",
|
|
21258
|
-
capScope: "system",
|
|
21259
|
-
addonId: null,
|
|
21260
|
-
access: "create"
|
|
21261
|
-
},
|
|
21262
21227
|
"platformProbe.resolveHwAccel": {
|
|
21263
21228
|
capName: "platform-probe",
|
|
21264
21229
|
capScope: "system",
|