โ† All skills
Tencent SkillHub ยท Developer Tools

Skill Veo3 Video Gen

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...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json, scripts/generate_video.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

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.

Rate Limits & Fallback

Veo 3.1 has per-minute quota โ€” on 429, wait 60s and retry Fallback to Runway Gen4 Turbo when rate-limited (use skill-runway-video-gen) Key location: GEMINI_API_KEY env var (second key in openclaw.json)

Rate Limits & Fallback

Veo 3.1 has per-minute quota โ€” on 429, wait 60s and retry Fallback to Runway Gen4 Turbo when rate-limited (use skill-runway-video-gen) Key location: GEMINI_API_KEY env var

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • scripts/generate_video.py Scripts
  • _meta.json Config