@camstack/addon-provider-rtsp 1.1.24 → 1.1.25
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 +26 -1
- package/dist/addon.mjs +26 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7263,6 +7263,24 @@ var RecordingRetentionSchema = object({
|
|
|
7263
7263
|
maxSizeGb: number().min(0).optional()
|
|
7264
7264
|
});
|
|
7265
7265
|
/**
|
|
7266
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7267
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7268
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7269
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7270
|
+
*
|
|
7271
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7272
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7273
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7274
|
+
* written with.
|
|
7275
|
+
*/
|
|
7276
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7277
|
+
"minimal",
|
|
7278
|
+
"low",
|
|
7279
|
+
"standard",
|
|
7280
|
+
"high",
|
|
7281
|
+
"max"
|
|
7282
|
+
]);
|
|
7283
|
+
/**
|
|
7266
7284
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7267
7285
|
*
|
|
7268
7286
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7299,7 +7317,14 @@ var RecordingConfigSchema = object({
|
|
|
7299
7317
|
* derived into bands once via `migrateConfigToBands`.
|
|
7300
7318
|
*/
|
|
7301
7319
|
bands: array(RecordingBandSchema).optional(),
|
|
7302
|
-
retention: RecordingRetentionSchema.optional()
|
|
7320
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7321
|
+
/**
|
|
7322
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7323
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7324
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7325
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7326
|
+
*/
|
|
7327
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7303
7328
|
});
|
|
7304
7329
|
/**
|
|
7305
7330
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7239,6 +7239,24 @@ var RecordingRetentionSchema = object({
|
|
|
7239
7239
|
maxSizeGb: number().min(0).optional()
|
|
7240
7240
|
});
|
|
7241
7241
|
/**
|
|
7242
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7243
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7244
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7245
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7246
|
+
*
|
|
7247
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7248
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7249
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7250
|
+
* written with.
|
|
7251
|
+
*/
|
|
7252
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7253
|
+
"minimal",
|
|
7254
|
+
"low",
|
|
7255
|
+
"standard",
|
|
7256
|
+
"high",
|
|
7257
|
+
"max"
|
|
7258
|
+
]);
|
|
7259
|
+
/**
|
|
7242
7260
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7243
7261
|
*
|
|
7244
7262
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7275,7 +7293,14 @@ var RecordingConfigSchema = object({
|
|
|
7275
7293
|
* derived into bands once via `migrateConfigToBands`.
|
|
7276
7294
|
*/
|
|
7277
7295
|
bands: array(RecordingBandSchema).optional(),
|
|
7278
|
-
retention: RecordingRetentionSchema.optional()
|
|
7296
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7297
|
+
/**
|
|
7298
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7299
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7300
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7301
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7302
|
+
*/
|
|
7303
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7279
7304
|
});
|
|
7280
7305
|
/**
|
|
7281
7306
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|