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