This commit is contained in:
Andras Schmelczer 2026-05-12 22:00:56 +01:00
parent 8708bf000d
commit 11711c57e6
38 changed files with 5361 additions and 265 deletions

View file

@ -46,6 +46,7 @@ function emitScript(storyboard: Storyboard): string {
voice: {
instruct: storyboard.voice.instruct,
language: storyboard.voice.language,
referenceText: storyboard.voice.referenceText,
temperature: storyboard.voice.temperature ?? 0.6,
topP: storyboard.voice.topP ?? 0.9,
seed: storyboard.voice.seed ?? 42,
@ -68,6 +69,7 @@ function main(): void {
const index = {
storyboards: storyboards.map((sb) => ({
name: sb.name,
locale: sb.locale ?? sb.content.appLanguage,
aspect: sb.video.aspect,
outputFps: sb.video.outputFps,
minDurationS: sb.video.minDurationS,