โ† All skills
Tencent SkillHub ยท Content Creation

Skill Tiktok Ads Video

Generate TikTok-style short-form ad videos with animated pill captions. Takes a base MP4 (Veo/Runway/Kling), overlays animated captions with fade in/out, mix...

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

Generate TikTok-style short-form ad videos with animated pill captions. Takes a base MP4 (Veo/Runway/Kling), overlays animated captions with fade in/out, mix...

โฌ‡ 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/example_captions.json, scripts/overlay.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
2.1.0

Documentation

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

skill-tiktok-ads-video v2.0.0

Animated pill-style caption overlays for short-form video. No Premiere, no CapCut โ€” pure Python. v2 ships with built-in product presets โ€” no more manual captions JSON.

Usage (v2 โ€” product presets)

uv run --with moviepy --with pillow scripts/overlay.py \ --video base.mp4 \ --output final.mp4 \ --product rain_cloud \ --style subtitle_talk

Products

rain_cloud โ€” Rain Cloud Humidifier hydro_bottle โ€” Hydrogen Water Bottle mini_cam โ€” Mini Clip Camera

Styles

phrase_slam โ€” Bold full-screen phrase drops subtitle_talk โ€” Conversational subtitle-style captions big_center โ€” Large centered text with price bar at top. Best for bold product reveals. random โ€” Randomly picks a style

Optional audio

--audio music.mp3 \ --audio-start 8 \ --audio-vol 0.5 No --audio keeps the original video audio.

Custom fonts

--font-black /path/to/Montserrat-Black.ttf \ --font-bold /path/to/Montserrat-Bold.ttf Falls back to Montserrat from ~/.local/share/fonts/ if not specified.

Legacy usage (v1 โ€” manual captions JSON)

Still supported for backward compatibility: uv run --with moviepy --with pillow scripts/overlay.py \ --video base.mp4 \ --output final.mp4 \ --captions scripts/example_captions.json

PIL textbbox fix

PIL's textbbox((0,0), text, font) returns (x0, y0, x1, y1) where y0 is a non-zero offset (typically 7โ€“15px depending on font size). Drawing text at (x, y) without compensating for this offset causes text to appear below the pill's visual center. Fix implemented in pill(): bb = draw.textbbox((0, 0), text, font=font) x_off, y_off = bb[0], bb[1] vis_w = bb[2] - bb[0] # actual visual width vis_h = bb[3] - bb[1] # actual visual height # Compensate offsets when drawing text tx = cx - vis_w // 2 - x_off ty = y - y_off draw.text((tx, ty), text, font=font, fill=fg)

Emoji note

NotoColorEmoji.ttf fails with PIL at arbitrary sizes (bitmap font with limited supported sizes). Use text alternatives ("Free delivery" instead of "Free delivery ๐Ÿšš") for reliable rendering.

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Config1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/overlay.py Scripts
  • _meta.json Config
  • scripts/example_captions.json Config