This commit is contained in:
Andras Schmelczer 2026-06-28 11:59:44 +01:00
parent f1601257c7
commit c2070693fb
68 changed files with 2305 additions and 212 deletions

View file

@ -7,7 +7,7 @@ function requiredEnv(name: string): string {
}
// Environment-only knobs. Per-storyboard tuning (aspect, fps, bitrate,
// voice, prompts, brand…) lives on the Storyboard object itself — see
// voice, prompts, brand…) lives on the Storyboard object itself. See
// src/storyboard.ts.
export const APP_URL = requiredEnv('APP_URL');
@ -20,5 +20,5 @@ export const OUTPUT_DIR = 'output';
// Frames of head-room kept in front of sceneStart when trimming. Shared by
// the video trim and the narration manifest so cue offsets line up with the
// trimmed timeline. Not tuned per storyboard same lead-in for any cut.
// trimmed timeline. Not tuned per storyboard: same lead-in for any cut.
export const LEAD_IN_S = 0.12;