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

video-generator视频生成器

Agent Skill

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

总安装

39,917

周安装

1,680

GitHub Stars

公开资料未说明

下载量

13,978
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install video-generator

简介

具有多提供商 TTS/ASR 支持的自动化文本到视频管道 - OpenAI、Azure、阿里云、腾讯 | 多厂商支持 TTS/ASR 的自动化文本转视频系统

SKILL.md

name
video-generator
description
Automated text-to-video pipeline with multi-provider TTS/ASR support - OpenAI, Azure, Aliyun, Tencent | 多厂商 TTS/ASR 支持的自动化文本转视频系统
tags
[video-generation, remotion, openai, azure, aliyun, tencent, tts, whisper, automation, ai-video, short-video, text-to-video, multi-provider]
repository
https://github.com/ZhenRobotics/openclaw-video-generator
homepage
https://github.com/ZhenRobotics/openclaw-video-generator#readme
requires
api_keys
description
OpenAI API key for TTS and Whisper services (default provider) | OpenAI API 密钥(默认提供商)
url
https://platform.openai.com/api-keys
optional
false
provider_group
openai
description
Azure Speech Service key (alternative to OpenAI) | Azure 语音服务密钥(OpenAI 的替代选项)
url
https://portal.azure.com/
optional
true
provider_group
azure
description
Azure region (required with AZURE_SPEECH_KEY) | Azure 区域(配合 AZURE_SPEECH_KEY 使用)
optional
true
provider_group
azure
description
Aliyun AccessKey ID (alternative to OpenAI) | 阿里云 AccessKey ID(OpenAI 的替代选项)
url
https://ram.console.aliyun.com/manage/ak
optional
true
provider_group
aliyun
description
Aliyun AccessKey Secret (required with ALIYUN_ACCESS_KEY_ID) | 阿里云 AccessKey Secret
optional
true
provider_group
aliyun
description
Aliyun NLS App Key (required with ALIYUN_ACCESS_KEY_ID) | 阿里云 NLS 应用密钥
url
https://ram.console.aliyun.com/manage/ak
optional
true
provider_group
aliyun
description
Tencent Cloud Secret ID (alternative to OpenAI) | 腾讯云 Secret ID(OpenAI 的替代选项)
url
https://console.cloud.tencent.com/cam/capi
optional
true
provider_group
tencent
description
Tencent Cloud Secret Key (required with TENCENT_SECRET_ID) | 腾讯云 Secret Key
optional
true
provider_group
tencent
description
Tencent Cloud App ID (required with TENCENT_SECRET_ID) | 腾讯云应用 ID
optional
true
provider_group
tencent
tools
packages
source
npm
version
1.6.2
registry_url
https://www.npmjs.com/package/openclaw-video-generator
verified_repo
https://github.com/ZhenRobotics/openclaw-video-generator
verified_commit
6279034
npm_latest
1.6.2
install
method
npm
package
openclaw-video-generator@1.6.2
commands
verify
registry_verification
|
post_install
|
notes
|

🎬 Video Generator Skill

Automated text-to-video generation system that transforms text scripts into professional short videos with AI-powered voiceover, precise timing, and cyber-wireframe visuals.

Cost: ~$0.003 per 15-second video | License: MIT | Package: openclaw-video-generator


📦 Package Information

PropertyValue
npm Packageopenclaw-video-generator
Version1.6.2
Repositorygithub.com/ZhenRobotics/openclaw-video-generator
Commit Hash6279034
LicenseMIT

Verification:

npm info openclaw-video-generator version repository.url
# Expected: 1.6.2 and https://github.com/ZhenRobotics/openclaw-video-generator

🔐 Provider Setup (Choose ONE)

This tool supports 4 alternative TTS/ASR providers. You only need ONE configured:

Option 1: OpenAI (Recommended)

export OPENAI_API_KEY="sk-..."
  • Pros: Best quality, simple setup
  • Cost: ~$0.003 per 15s video

Option 2: Azure

export AZURE_SPEECH_KEY="..."
export AZURE_SPEECH_REGION="eastasia"
  • Pros: Enterprise reliability
  • Cost: Similar to OpenAI

Option 3: Aliyun (阿里云)

export ALIYUN_ACCESS_KEY_ID="..."
export ALIYUN_ACCESS_KEY_SECRET="..."
export ALIYUN_APP_KEY="..."
  • Pros: China connectivity, Chinese voices
  • Cost: ~¥0.02 per 15s video

Option 4: Tencent (腾讯云)

export TENCENT_SECRET_ID="..."
export TENCENT_SECRET_KEY="..."
export TENCENT_APP_ID="..."
  • Pros: China connectivity
  • Cost: ~¥0.02 per 15s video

Why multiple providers? Fallback support for network restrictions, regional preferences, and cost optimization.


🚀 Quick Start

Prerequisites

node --version  # Need >= 18
npm --version
ffmpeg -version

Installation

Option 1: npm Global Install

npm install -g openclaw-video-generator@1.6.2
export OPENAI_API_KEY="sk-..."  # Or add to ~/.bashrc
openclaw-video-generator --version

Option 2: From Source

git clone https://github.com/ZhenRobotics/openclaw-video-generator.git
cd openclaw-video-generator
npm install

# Configure provider
cp .env.example .env
nano .env  # Add your API key
chmod 600 .env

First Video

cd ~/openclaw-video-generator
cat > test.txt << 'EOF'
AI makes development easier
Saving time and boosting efficiency
EOF

./scripts/script-to-video.sh test.txt --voice nova --speed 1.15
# Output: out/test.mp4

💻 Agent Usage

When to Use

Auto-trigger when user mentions: video, generate video, create video, 生成视频

Standard Command

cd ~/openclaw-video-generator && \
./scripts/script-to-video.sh <script-file> \
  --voice nova \
  --speed 1.15

With Background Video

cd ~/openclaw-video-generator && \
./scripts/script-to-video.sh <script-file> \
  --voice nova \
  --bg-video "backgrounds/tech.mp4" \
  --bg-opacity 0.6

Example Flow

User: "Generate video: AI makes development easier"

Agent:

# 1. Check project
ls ~/openclaw-video-generator || echo "Not installed"

# 2. Create script
cat > ~/openclaw-video-generator/scripts/user-script.txt << 'EOF'
AI makes development easier
EOF

# 3. Generate
cd ~/openclaw-video-generator && \
./scripts/script-to-video.sh scripts/user-script.txt

# 4. Show result
echo "Video: ~/openclaw-video-generator/out/user-script.mp4"

Guidelines

Do:

  • Verify project exists before running
  • Check .env configuration
  • Show output file location

Don't:

  • Clone without user confirmation
  • Hardcode API keys in commands
  • Create new Remotion projects

🎯 Core Features

  • Multi-Provider TTS: OpenAI, Azure, Aliyun, Tencent with auto-fallback
  • Timestamp Extraction: Precise speech-to-text segmentation
  • Scene Detection: 6 intelligent scene types with auto-styling
  • Video Rendering: Remotion with cyber-wireframe aesthetics
  • Background Videos: Custom backgrounds with opacity control
  • Local Processing: Video rendering happens on your machine

⚙️ Configuration

TTS Voices

OpenAI:

  • nova (recommended), alloy, echo, shimmer

Azure:

  • zh-CN-XiaoxiaoNeural, zh-CN-YunxiNeural

Speech Speed

Range: 0.25 - 4.0 | Recommended: 1.15

Background Video

  • --bg-video <path> - Video file
  • --bg-opacity <0-1> - Transparency
  • --bg-overlay <rgba> - Text overlay

Recommended:

Use CaseOpacityOverlay
Text-focused0.3-0.4rgba(10,10,15,0.6)
Balanced0.5-0.6rgba(10,10,15,0.4)
Visual-focused0.7-1.0rgba(10,10,15,0.25)

📊 Video Specs

  • Resolution: 1080 x 1920 (vertical)
  • Frame Rate: 30 fps
  • Format: MP4 (H.264 + AAC)
  • Style: Cyber-wireframe with neon colors
  • Duration: Auto-calculated

🎨 Scene Types

TypeEffectTrigger
titleGlitch + scaleFirst segment
emphasisPop-up zoomNumbers/percentages
painShake + warningProblems mentioned
contentFade-inRegular text
circleRotating ringListed points
endSlide-upLast segment

💰 Cost

Per 15-second video: ~$0.003 (< 1 cent)

  • TTS: ~$0.001
  • Whisper: ~$0.0015
  • Rendering: Free (local)

🔧 Troubleshooting

Project Not Found

ls ~/openclaw-video-generator || \
git clone https://github.com/ZhenRobotics/openclaw-video-generator.git ~/openclaw-video-generator && \
cd ~/openclaw-video-generator && npm install

API Key Error

# Verify .env
cat ~/openclaw-video-generator/.env

# Create if missing
cd ~/openclaw-video-generator
echo 'OPENAI_API_KEY="sk-..."' > .env
chmod 600 .env

Provider Test

cd ~/openclaw-video-generator && ./scripts/test-providers.sh

🔒 Privacy

Local Processing:

  • Video rendering
  • Scene orchestration
  • File management

Cloud Processing (via configured provider):

  • Text-to-Speech (text sent to API)
  • Speech recognition (audio sent to API)

API keys are stored in .env file (600 permissions, never committed to git).


📚 Documentation

  • npm: https://www.npmjs.com/package/openclaw-video-generator
  • GitHub: https://github.com/ZhenRobotics/openclaw-video-generator
  • Issues: https://github.com/ZhenRobotics/openclaw-video-generator/issues

📊 Tech Stack

Remotion · OpenAI · Azure · Aliyun · Tencent · TypeScript · Node.js · FFmpeg


🆕 Version History

v1.6.2 (2026-03-25) - Current

  • Chinese TTS integration (Aliyun)
  • Dual subtitle styles
  • Medical content examples

v1.6.0 (2026-03-18)

  • Premium styles system
  • Poster generator
  • Design tokens

v1.2.0 (2026-03-07)

  • Background video support
  • Multi-provider architecture
  • Auto-fallback

v1.0.0 (2026-03-03)

  • Initial release

License: MIT | Author: @ZhenStaff | Support: GitHub Issues

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.78%
按下载量换算11,571

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills