Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

video-captions-reelwords视频字幕 reelwords

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

13,924

周安装

592

GitHub Stars

公开资料未说明

下载量

4,878
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:video-captions-reelwords(视频字幕 reelwords)
来源仓库:https://github.com/kmasterrr/video-captions-reelwords
安装命令:
openclaw skills install video-captions-reelwords
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install video-captions-reelwords

简介

基于 ReelWords Caption API 生成风格化短视频字幕。

  • 专为短格式内容设计,支持动态文字渲染效果。video-captions-reelwords 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 当用户请求创建作业级字幕时自动调用接口处理。
  • 需遵循 API 使用条款,注意商业用途授权要求。
  • 通过 clawhub 安装,集成于 OpenClaw 视频工具链。

SKILL.md

name
reelwords-captions
description
Generate captions for short-form videos using the ReelWords (reelwords.ai) Caption API. Use when a user asks to create caption jobs, render stylized subtitles for Reels/TikTok/Shorts, poll caption-job status, or download the rendered captioned video via the ReelWords REST API endpoints (/api/v1/caption-jobs) using an x-api-key (rw_...).
metadata
{"clawdbot":{"emoji":"📝","requires":{"bins":["python3"],"env":["REELWORDS_API_KEY"]}}}

ReelWords Captions

Generate stylized captions for videos using the ReelWords Caption API: create a caption render job, poll until complete, then download the rendered output.

Setup

1) Create a ReelWords account + API key

  1. Sign up / log in: https://reelwords.ai
  2. Open the account menu (top-right)API KeysNew key
  3. Copy the key (it will look like rw_...).

2) Provide the API key to OpenClaw

Provide the API key to the process as REELWORDS_API_KEY.

Common options:

  • Set REELWORDS_API_KEY as an environment variable (best when running the script directly)
  • If you run via OpenClaw/Clawdbot, store it in ~/.clawdbot/openclaw.json under skills.entries.reelwords-captions.env so the runtime can populate env vars for the skill.

Option A: environment variable

export REELWORDS_API_KEY="rw_..."

Option B: openclaw.json (recommended)

Edit ~/.clawdbot/openclaw.json and add an entry:

{
  "skills": {
    "entries": {
      "reelwords-captions": {
        "enabled": true,
        "env": {
          "REELWORDS_API_KEY": "rw_..."
        }
      }
    }
  }
}

Security note

Treat your API key like a password:

  • don’t commit it to git
  • don’t paste it into public chats
  • rotate it in ReelWords if you suspect it leaked

Usage

Base URL: https://api.reelwords.ai

You can use either the included helper script (simplest), or call the REST endpoints directly.

Option 1: All-in-one helper script (create → poll → download)

From this skill directory:

python3 scripts/reelwords_caption_job.py \
  --video-url "https://cdn.reelwords.ai/sample.mp4" \
  --style-id "style1" \
  --add-emojis \
  --max-words-per-line 6 \
  --position-y 82 \
  --font-size 54 \
  --highlight-color "#FFD803" \
  --hook-color "#FF5CAA" \
  --out captioned.mp4

Notes:

  • The script prints the final job JSON to stdout.
  • Download logic:

- prefers result.downloadUrl when present - otherwise falls back to GET /api/v1/caption-jobs/{id}/video (which typically redirects to a signed URL)

Option 2: Raw API examples (curl)

1) Create job

curl -sS https://api.reelwords.ai/api/v1/caption-jobs \
  -H "x-api-key: $REELWORDS_API_KEY" \
  -H "content-type: application/json" \
  -d '{
    "videoUrl": "https://cdn.reelwords.ai/sample.mp4",
    "preferences": {
      "style": {
        "styleId": "style1"
      }
    }
  }'

Response includes an id (save it as $JOB_ID).

2) Poll status

curl -sS https://api.reelwords.ai/api/v1/caption-jobs/$JOB_ID \
  -H "x-api-key: $REELWORDS_API_KEY" \
  -H "accept: application/json"

Poll until status becomes completed (or the response includes failureReason/failureMessage).

3) Download rendered video

Preferred (when present):

  • download from result.downloadUrl

Fallback (works in most tenants):

curl -L https://api.reelwords.ai/api/v1/caption-jobs/$JOB_ID/video \
  -H "x-api-key: $REELWORDS_API_KEY" \
  -o captioned.mp4

Workflow (high level)

  1. Create caption job: POST /api/v1/caption-jobs

- videoUrl (required) - preferences.style.styleId (required) - optional preferences (emojis, max words per line, colors, font sizing, etc.)

  1. Poll job status: GET /api/v1/caption-jobs/{id} until:

- completed: result.downloadUrl is usually present (downloadable) - failed: failureReason / failureMessage present

  1. Download:

- result.downloadUrl, or - GET /api/v1/caption-jobs/{id}/video (redirects to a signed URL)

References

  • API summary + curl examples: references/api.md

Notes

  • Auth header is x-api-key: <token>.
  • If you hit usage limits, treat HTTP 402 as “out of credits / limit reached” and surface the response cleanly.
  • If ReelWords adds new fields, prefer passing them through in the JSON payload rather than hardcoding assumptions.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.2%
按下载量换算4,302

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills