@camstack/addon-decoder-nodeav 1.2.80 → 1.2.81
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 +19 -2
- package/dist/index.mjs +19 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20261,8 +20261,25 @@ var occupancyRecheckFramesField = {
|
|
|
20261
20261
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20262
20262
|
* camera typically only reports a binary signal plus an optional
|
|
20263
20263
|
* channel/AI class which lives in dedicated event channels).
|
|
20264
|
-
|
|
20265
|
-
|
|
20264
|
+
*
|
|
20265
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20266
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20267
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20268
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20269
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20270
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20271
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20272
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20273
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20274
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20275
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20276
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20277
|
+
*/
|
|
20278
|
+
var MotionSourceEnum = _enum([
|
|
20279
|
+
"onboard",
|
|
20280
|
+
"analyzer",
|
|
20281
|
+
"device-activity"
|
|
20282
|
+
]);
|
|
20266
20283
|
/**
|
|
20267
20284
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20268
20285
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/index.mjs
CHANGED
|
@@ -20257,8 +20257,25 @@ var occupancyRecheckFramesField = {
|
|
|
20257
20257
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20258
20258
|
* camera typically only reports a binary signal plus an optional
|
|
20259
20259
|
* channel/AI class which lives in dedicated event channels).
|
|
20260
|
-
|
|
20261
|
-
|
|
20260
|
+
*
|
|
20261
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20262
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20263
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20264
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20265
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20266
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20267
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20268
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20269
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20270
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20271
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20272
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20273
|
+
*/
|
|
20274
|
+
var MotionSourceEnum = _enum([
|
|
20275
|
+
"onboard",
|
|
20276
|
+
"analyzer",
|
|
20277
|
+
"device-activity"
|
|
20278
|
+
]);
|
|
20262
20279
|
/**
|
|
20263
20280
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20264
20281
|
* "no source" — happens for battery cams without firmware motion when
|