skills$openclaw/veo3-video-gen
bluelyw6.1k

by bluelyw

veo3-video-gen – OpenClaw Skill

veo3-video-gen is an OpenClaw Skills integration for coding workflows. Generate and stitch short videos via Google Veo 3.x using the Gemini API (google-genai). Use when you need to create video clips from prompts (ads, UGC-style clips, product demos) and want a reproducible CLI workflow (generate, poll, download MP4, optionally stitch multiple segments).

6.1k stars5.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameveo3-video-gen
descriptionGenerate and stitch short videos via Google Veo 3.x using the Gemini API (google-genai). Use when you need to create video clips from prompts (ads, UGC-style clips, product demos) and want a reproducible CLI workflow (generate, poll, download MP4, optionally stitch multiple segments). OpenClaw Skills integration.
ownerbluelyw
repositorybluelyw/veo3-video-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bluelyw/veo3-video-gen
last updatedFeb 7, 2026

Maintainer

bluelyw

bluelyw

Maintains veo3-video-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
generate_video.py
16.2 KB
_meta.json
295 B
SKILL.md
2.2 KB
SKILL.md

name: veo3-video-gen description: Generate and stitch short videos via Google Veo 3.x using the Gemini API (google-genai). Use when you need to create video clips from prompts (ads, UGC-style clips, product demos) and want a reproducible CLI workflow (generate, poll, download MP4, optionally stitch multiple segments).

Veo 3 Video Generation (Gemini API)

Use the bundled script to generate an MP4 from a text prompt.

Generate (text → video)

uv run {baseDir}/scripts/generate_video.py \
  --prompt "A close up of ..." \
  --filename "out.mp4" \
  --model "veo-3.1-generate-preview" \
  --aspect-ratio "9:16" \
  --poll-seconds 10

Generate a longer video by stitching segments

Veo 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 Veo 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" \
  --model "veo-3.1-generate-preview" \
  --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 lastFrame 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

  • GEMINI_API_KEY env var (or --api-key).
  • ffmpeg on PATH when using --segments > 1.

Troubleshooting

  • 429/RESOURCE_EXHAUSTED: API key has no quota/billing for video.
  • 503/UNAVAILABLE: model overloaded; retry later.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- `GEMINI_API_KEY` env var (or `--api-key`). - `ffmpeg` on PATH when using `--segments > 1`.

FAQ

How do I install veo3-video-gen?

Run openclaw add @bluelyw/veo3-video-gen in your terminal. This installs veo3-video-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bluelyw/veo3-video-gen. Review commits and README documentation before installing.