diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-03 13:15:44 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-03 13:15:44 +0300 |
| commit | b819475635eec77c72ab1b3ec0793dd59f750013 (patch) | |
| tree | a2fa6459b8eacdbc7314b97f4ee459ec8e6eb291 /internal/cli/flags.go | |
| parent | 5a526a59bc650576d69c1f358449230e7751eb6d (diff) | |
feat: add --story cinematic narration and comic strip generation
- Generates a ~500-word Bulgarian vocabulary story from a batch file
- Produces 3 comic pages via NanoBanana (90% ultra-realistic style)
- Art style chosen randomly per run; override with --story-style
- Cinematic Gemini TTS narration saved as story_narration.mp3
- Random voice from curated pool (Charon, Fenrir, Enceladus, Algieba, Aoede, Schedar)
- Override narrator voice with --narrator-voice
- Falls back to story_tts_todo.txt if narration fails
- No new API key required — reuses existing GOOGLE_API_KEY
- Bump version to 0.9.4
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/cli/flags.go')
| -rw-r--r-- | internal/cli/flags.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/cli/flags.go b/internal/cli/flags.go index 0dad679..30e3854 100644 --- a/internal/cli/flags.go +++ b/internal/cli/flags.go @@ -20,6 +20,9 @@ type Flags struct { ImageAPI string ImageAPISpecified bool BatchFile string + StoryFile string // --story <file>: generate vocabulary story + comic image + StoryStyle string // --story-style: override the random art style (empty = random) + NarratorVoice string // --narrator-voice: Gemini voice for cinematic narration (empty = random) SkipAudio bool SkipImages bool GenerateAnki bool |
