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