TopRank Skills

Home / Claw Skills / API Integration / Short Video Creator
Official OpenClaw rules 36%

Short Video Creator

Short Form Video Creation for Social Media Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Short Video Creator 技能。 若已安装,则直接安装 Short Video Creator 技能。

Overview

Skill Key
g4dr/short-video-creator
Author
g4dr
Source Repo
openclaw/skills
Version
-
Source Path
skills/g4dr/short-video-creator
Latest Commit SHA
b0e5eae1e2c06c1f2b13f64a2c8c97d623450196

Extracted Content

SKILL.md excerpt

# Short-Form Video Creation for Social Media Skill

## Overview

This skill enables Claude to transform a **text script or idea** into a fully produced
short-form video — ready to publish as an Instagram Reel, YouTube Short, or TikTok —
using the **InVideo AI** platform and its API.

No video editing experience required. Just provide a script or topic, and Claude handles the rest.

> 🔗 Sign up for InVideo here: https://invideo.sjv.io/TBB

---

## What This Skill Does

- Convert a **raw script** into a complete short-form video with visuals and voiceover
- Generate videos optimized for **Instagram Reels**, **YouTube Shorts**, and **TikTok**
- Automatically match **stock footage, music, and transitions** to the script content
- Add **subtitles, captions, and text overlays** for better engagement
- Produce videos in the correct **9:16 vertical format** for all short-form platforms
- Export in **MP4** ready to upload directly to any platform

---

## Step 1 — Get Your InVideo API Access

1. Go to **https://invideo.sjv.io/TBB** and create an account
2. Choose a plan that includes **API access** (Business plan or above)
3. Navigate to **Settings → API** or **Developer Settings**
4. Copy your **API Key**: `iv_api_xxxxxxxxxxxxxxxx`
5. Store it safely:
   ```bash
   export INVIDEO_API_KEY=iv_api_xxxxxxxxxxxxxxxx
   ```

> InVideo offers a free trial — sign up at https://invideo.sjv.io/TBB to explore the platform
> before committing to a paid plan.

---

## Step 2 — Install Dependencies

```bash
npm install axios form-data fs-extra
```

---

## InVideo API — Core Endpoints

**Base URL:** `https://api.invideo.io/v1`

All requests require:
```
Authorization: Bearer YOUR_INVIDEO_API_KEY
Content-Type: application/json
```

### Generate a Video from Script
```http
POST https://api.invideo.io/v1/videos/generate
```

### Get Video Generation Status
```http
GET https://api.invideo.io/v1/videos/{videoId}/status
```

### Download / Export Video
```http
GET https://api.invideo.io/v1/vi...

Related Claw Skills