@camstack/addon-decoder-ffmpeg 1.2.20 → 1.2.21
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 +8 -0
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20011,6 +20011,14 @@ var ClipSchema = object({
|
|
|
20011
20011
|
endMs: number()
|
|
20012
20012
|
}),
|
|
20013
20013
|
/**
|
|
20014
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20015
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20016
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20017
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20018
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20019
|
+
*/
|
|
20020
|
+
labels: array(string()).max(3).optional(),
|
|
20021
|
+
/**
|
|
20014
20022
|
* Lazy thumbnail URL, never inlined.
|
|
20015
20023
|
*
|
|
20016
20024
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/index.mjs
CHANGED
|
@@ -20007,6 +20007,14 @@ var ClipSchema = object({
|
|
|
20007
20007
|
endMs: number()
|
|
20008
20008
|
}),
|
|
20009
20009
|
/**
|
|
20010
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20011
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20012
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20013
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20014
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20015
|
+
*/
|
|
20016
|
+
labels: array(string()).max(3).optional(),
|
|
20017
|
+
/**
|
|
20010
20018
|
* Lazy thumbnail URL, never inlined.
|
|
20011
20019
|
*
|
|
20012
20020
|
* Recording-derived clips (events-mode keep-window, and the prepared
|