# veo3-video-gen
Video Generation (SkillBoss API Hub) Use the bundled script to generate an MP4 from a text prompt via SkillBoss API Hub, which automatically routes to the best available video generation model. Generate (text โ video)
uv run {baseDir}/scripts/generate_video.py \
--prompt "A close up of ..."
--filename "out.mp4"
--aspect-ratio "9:16"
Generate a longer video by stitching segments
SkillBoss API Hub commonly outputs ~8s clips per request. Use --segments to generate multiple clips and concatenate them with ffmpeg.
Important: This skill sends one prompt per segment (one API request per segment). Use --base-style to keep style consistent across segments.
uv run {baseDir}/scripts/generate_video.py \
--prompt "Same scene, consistent style..."
--filename "out-24s.mp4"
--aspect-ratio "9:16"
--segments 3
--segment-style continuation
Options:
--base-style "...": prepended to every segment prompt (recommended). --segment-prompt "..." (repeatable): provide one prompt per segment (overrides --prompt). --segment-style continuation (default): appends continuity instructions per segment (only when using --prompt). --segment-style same: uses the exact same prompt for each segment (only when using --prompt).
--use-last-frame: for segment >=2, extract previous segment last frame and pass it as last_frame for continuity.
--emit-segment-media: print MEDIA: for each segment as it finishes (useful for progress).
--keep-segments: keep intermediate *.segXX.mp4 files.
--reference-image path.jpg (repeatable): guide generation with product/style references. Requirements SKILLBOSS_API_KEY env var (or --api-key). All video generation is routed via SkillBoss API Hub. ffmpeg on PATH when using --segments > 1. Troubleshooting 401/Unauthorized: check that SKILLBOSS_API_KEY is set correctly. 429/rate limit: SkillBoss API Hub quota exceeded; retry later. 503/UNAVAILABLE: upstream model overloaded; retry later.
Join 80,000+ one-person companies automating with AI