@camstack/addon-decoder-ffmpeg 1.2.66 → 1.2.68

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/index.js CHANGED
@@ -20487,6 +20487,14 @@ var AgentPipelineSettingsSchema = object({
20487
20487
  /** Node is eligible to be the ingest / source-owner (serve the restream). */
20488
20488
  ingest: boolean().optional(),
20489
20489
  /**
20490
+ * This node's decode RAM budget, MB. Wins over the cluster
20491
+ * `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
20492
+ * own RAM unless the operator moved the cluster value (D365).
20493
+ */
20494
+ decodeBudgetMb: number().int().min(1024).max(65536).optional(),
20495
+ /** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
20496
+ maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
20497
+ /**
20490
20498
  * Operator override for the LAN host a cross-node decoder dials to reach
20491
20499
  * THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
20492
20500
  * falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
@@ -20948,6 +20956,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
20948
20956
  }), object({ success: literal(true) }), {
20949
20957
  kind: "mutation",
20950
20958
  auth: "admin"
20959
+ }), method(object({
20960
+ agentNodeId: string(),
20961
+ decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
20962
+ maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
20963
+ }), object({ success: literal(true) }), {
20964
+ kind: "mutation",
20965
+ auth: "admin"
20951
20966
  }), method(object({
20952
20967
  agentNodeId: string(),
20953
20968
  reachableHost: string().nullable()
@@ -33128,6 +33143,12 @@ Object.freeze({
33128
33143
  addonId: null,
33129
33144
  access: "create"
33130
33145
  },
33146
+ "pipelineOrchestrator.setAgentDecodeLimits": {
33147
+ capName: "pipeline-orchestrator",
33148
+ capScope: "system",
33149
+ addonId: null,
33150
+ access: "create"
33151
+ },
33131
33152
  "pipelineOrchestrator.setAgentDetectWeight": {
33132
33153
  capName: "pipeline-orchestrator",
33133
33154
  capScope: "system",
package/dist/index.mjs CHANGED
@@ -20483,6 +20483,14 @@ var AgentPipelineSettingsSchema = object({
20483
20483
  /** Node is eligible to be the ingest / source-owner (serve the restream). */
20484
20484
  ingest: boolean().optional(),
20485
20485
  /**
20486
+ * This node's decode RAM budget, MB. Wins over the cluster
20487
+ * `nodeDecodeBudgetMb`; absent, the runner derives a share of the node's
20488
+ * own RAM unless the operator moved the cluster value (D365).
20489
+ */
20490
+ decodeBudgetMb: number().int().min(1024).max(65536).optional(),
20491
+ /** This node's live decode-worker cap. Wins over the cluster `maxLiveDecodeWorkers`. */
20492
+ maxLiveDecodeWorkers: number().int().min(1).max(32).optional(),
20493
+ /**
20486
20494
  * Operator override for the LAN host a cross-node decoder dials to reach
20487
20495
  * THIS node's restream (Cluster UI). Absent → auto-detect: a remote runner
20488
20496
  * falls back to its `CAMSTACK_HUB_URL`-derived host (the Moleculer address
@@ -20944,6 +20952,13 @@ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
20944
20952
  }), object({ success: literal(true) }), {
20945
20953
  kind: "mutation",
20946
20954
  auth: "admin"
20955
+ }), method(object({
20956
+ agentNodeId: string(),
20957
+ decodeBudgetMb: number().int().min(1024).max(65536).nullable().optional(),
20958
+ maxLiveDecodeWorkers: number().int().min(1).max(32).nullable().optional()
20959
+ }), object({ success: literal(true) }), {
20960
+ kind: "mutation",
20961
+ auth: "admin"
20947
20962
  }), method(object({
20948
20963
  agentNodeId: string(),
20949
20964
  reachableHost: string().nullable()
@@ -33124,6 +33139,12 @@ Object.freeze({
33124
33139
  addonId: null,
33125
33140
  access: "create"
33126
33141
  },
33142
+ "pipelineOrchestrator.setAgentDecodeLimits": {
33143
+ capName: "pipeline-orchestrator",
33144
+ capScope: "system",
33145
+ addonId: null,
33146
+ access: "create"
33147
+ },
33127
33148
  "pipelineOrchestrator.setAgentDetectWeight": {
33128
33149
  capName: "pipeline-orchestrator",
33129
33150
  capScope: "system",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-decoder-ffmpeg",
3
- "version": "1.2.66",
3
+ "version": "1.2.68",
4
4
  "description": "Standalone ffmpeg-subprocess decoder fallback addon for CamStack",
5
5
  "keywords": [
6
6
  "camstack",