@camstack/addon-provider-rtsp 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/addon.js +19 -2
- package/dist/addon.mjs +19 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20555,8 +20555,25 @@ var occupancyRecheckFramesField = {
|
|
|
20555
20555
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20556
20556
|
* camera typically only reports a binary signal plus an optional
|
|
20557
20557
|
* channel/AI class which lives in dedicated event channels).
|
|
20558
|
-
|
|
20559
|
-
|
|
20558
|
+
*
|
|
20559
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20560
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20561
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20562
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20563
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20564
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20565
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20566
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20567
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20568
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20569
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20570
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20571
|
+
*/
|
|
20572
|
+
var MotionSourceEnum = _enum([
|
|
20573
|
+
"onboard",
|
|
20574
|
+
"analyzer",
|
|
20575
|
+
"device-activity"
|
|
20576
|
+
]);
|
|
20560
20577
|
/**
|
|
20561
20578
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20562
20579
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/addon.mjs
CHANGED
|
@@ -20531,8 +20531,25 @@ var occupancyRecheckFramesField = {
|
|
|
20531
20531
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20532
20532
|
* camera typically only reports a binary signal plus an optional
|
|
20533
20533
|
* channel/AI class which lives in dedicated event channels).
|
|
20534
|
-
|
|
20535
|
-
|
|
20534
|
+
*
|
|
20535
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20536
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20537
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20538
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20539
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20540
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20541
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20542
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20543
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20544
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20545
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20546
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20547
|
+
*/
|
|
20548
|
+
var MotionSourceEnum = _enum([
|
|
20549
|
+
"onboard",
|
|
20550
|
+
"analyzer",
|
|
20551
|
+
"device-activity"
|
|
20552
|
+
]);
|
|
20536
20553
|
/**
|
|
20537
20554
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20538
20555
|
* "no source" — happens for battery cams without firmware motion when
|