autokap 1.7.5 → 1.7.6
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/cli.js +2 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -219,6 +219,7 @@ program
|
|
|
219
219
|
.option('--cloud', 'Cloud runner mode: signals 4+ vCPU available, unblocks the conservative Linux FPS default (8 → 30)', false)
|
|
220
220
|
.option('--preset-ids <ids>', 'Comma-separated preset IDs to capture. When omitted, captures all presets with auto_recapture_enabled=true.')
|
|
221
221
|
.option('--outdated', 'Capture only outdated auto-recapture presets.', false)
|
|
222
|
+
.option('--regenerate-tts', 'Force fresh TTS synthesis for video presets — ignore cached audio segments. Reused segments become billable at full rate.', false)
|
|
222
223
|
.action(async (opts) => {
|
|
223
224
|
if (opts.debug) {
|
|
224
225
|
const { setDebugEnabled } = await import('./logger.js');
|
|
@@ -415,6 +416,7 @@ program
|
|
|
415
416
|
env: opts.env,
|
|
416
417
|
headed: opts.headed,
|
|
417
418
|
allowUploadFailure: opts.allowUploadFailure,
|
|
419
|
+
regenerateTts: opts.regenerateTts,
|
|
418
420
|
onProgress: (event) => {
|
|
419
421
|
const checkpoint = cloudCaptureProgressCheckpoint(event);
|
|
420
422
|
if (!checkpoint)
|