Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

voiceai-voiceover-creatorVoiceai 配音创作者

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

42,665

周安装

1,814

GitHub Stars

公开资料未说明

下载量

14,947
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:voiceai-voiceover-creator(Voiceai 配音创作者)
来源仓库:https://github.com/gizmogremlin/voiceai-voiceover-creator
安装命令:
openclaw skills install voiceai-voiceover-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install voiceai-voiceover-creator

简介

使用 Voice.ai TTS 将脚本转换为可发布的配音,包括片段、章节、字幕和视频混合。

SKILL.md

name
voiceai-creator-voiceover-pipeline
description
Turn scripts into publishable voiceovers with Voice.ai TTS, including segments, chapters, captions, and video muxing.
version
0.2.1
env
required_env
credentials
setup
none — single file, runs directly with Node.js
runtime
node>=20
optional_deps
ffmpeg

Voice.ai Creator Voiceover Pipeline

This skill follows the Agent Skills specification.

Turn any script into a publish-ready voiceover — complete with numbered segments, a stitched master, YouTube chapters, SRT captions, and a beautiful review page. Optionally, replace the audio track on an existing video.

Built for creators who want studio-quality voiceovers without the studio. Powered by Voice.ai.


When to use this skill

ScenarioWhy it fits
YouTube long-formFull narration with chapter markers and captions
YouTube ShortsQuick hooks with the shortform template
PodcastsConsistent host voice, intro/outro templates
Course contentProfessional narration for educational videos
Quick iterationSmart caching — edit one section, only that segment re-renders
Video audio replacementDrop AI voiceover onto screen recordings or B-roll

The one-command workflow

Have a script and a video? Turn them into a finished video with AI voiceover in one shot:

node voiceai-vo.cjs build \
  --input my-script.md \
  --voice oliver \
  --title "My Video" \
  --video ./my-recording.mp4 \
  --mux

This renders the voiceover, stitches the master audio, and drops it onto your video — all in one command. Output:

  • out/my-video/muxed.mp4 — your video with the new voiceover
  • out/my-video/master.wav — the standalone audio
  • out/my-video/review.html — listen and review each segment
  • out/my-video/chapters.txt — YouTube-ready chapter timestamps
  • out/my-video/captions.srt — SRT captions

Use --sync pad if the audio is shorter than the video, or --sync trim to cut it to match.


Requirements

  • Node.js 20+ — runtime (no npm install needed — the CLI is a single bundled file)
  • VOICE_AI_API_KEY — set as environment variable or in a .env file in the skill root. Get a key at voice.ai/dashboard.
  • ffmpeg (optional) — needed for master stitching, MP3 encoding, loudness normalization, and video muxing. The pipeline still produces individual segments, the review page, chapters, and captions without it.

Configuration

The skill reads VOICE_AI_API_KEY from (in order):

  1. Environment variable VOICE_AI_API_KEY
  2. Environment variable VOICEAI_API_KEY (alternate)
  3. .env file in the skill root
echo 'VOICE_AI_API_KEY=your-key-here' > .env

Use --mock on any command to run the full pipeline without an API key (produces placeholder audio).


Commands

build — Generate a voiceover from a script

node voiceai-vo.cjs build \
  --input <script.md or script.txt> \
  --voice <voice-alias-or-uuid> \
  --title "My Project" \
  [--template youtube|podcast|shortform] \
  [--language en] \
  [--video input.mp4 --mux --sync shortest] \
  [--force] [--mock]

What it does:

  1. Reads the script and splits it into segments (by ## headings for .md, or by sentence boundaries for .txt)
  2. Optionally prepends/appends template intro/outro segments
  3. Renders each segment via Voice.ai TTS as a numbered WAV file
  4. Stitches a master audio file (if ffmpeg is available)
  5. Generates chapters, captions, a review page, and metadata files
  6. Optionally muxes the voiceover into an existing video

Full options:

OptionDescription
-i, --input <path>Script file (.txt or .md) — required
-v, --voice <id>Voice alias or UUID — required
-t, --title <title>Project title (defaults to filename)
--template <name>youtube, podcast, or shortform
--mode <mode>headings or auto (default: headings for .md)
--max-chars <n>Max characters per auto-chunk (default: 1500)
--language <code>Language code (default: en)
--video <path>Input video for muxing
--muxEnable video muxing (requires --video)
--sync <policy>shortest, pad, or trim (default: shortest)
--forceRe-render all segments (ignore cache)
--mockMock mode — no API calls, placeholder audio
-o, --out <dir>Custom output directory

replace-audio — Swap the audio track on a video

node voiceai-vo.cjs replace-audio \
  --video ./input.mp4 \
  --audio ./out/my-project/master.wav \
  [--out ./out/my-project/muxed.mp4] \
  [--sync shortest|pad|trim]

Requires ffmpeg. If not installed, generates helper shell/PowerShell scripts instead.

Sync policyBehavior
shortest (default)Output ends when the shorter track ends
padPad audio with silence to match video duration
trimTrim audio to match video duration

Video stream is copied without re-encoding (-c:v copy). Audio is encoded as AAC. A mux report is saved alongside the output.

Privacy: Video processing is entirely local. Only script text is sent to Voice.ai for TTS.

voices — List available voices

node voiceai-vo.cjs voices [--limit 20] [--query "deep"] [--mock]

Available voices

Use short aliases or full UUIDs with --voice:

AliasVoiceGenderStyle
ellieEllieFYouthful, vibrant vlogger
oliverOliverMFriendly British
lilithLilithFSoft, feminine
smoothSmooth Calm VoiceMDeep, smooth narrator
corpseCorpse HusbandMDeep, distinctive
skadiSkadiFAnime character
zhongliZhongliMDeep, authoritative
floraFloraFCheerful, high pitch
chiefMaster ChiefMHeroic, commanding

The voices command also returns any additional voices available on the API. Voice list is cached for 10 minutes.


Build outputs

After a build, the output directory contains:

out/<title-slug>/
  segments/           # Numbered WAV files (001-intro.wav, 002-section.wav, …)
  master.wav          # Stitched audio (requires ffmpeg)
  master.mp3          # MP3 encode (requires ffmpeg)
  manifest.json       # Build metadata: voice, template, segment list, hashes
  timeline.json       # Segment durations and start times
  review.html         # Interactive review page with audio players
  chapters.txt        # YouTube-friendly chapter timestamps
  captions.srt        # SRT captions using segment boundaries
  description.txt     # YouTube description with chapters + Voice.ai credit

review.html

A standalone HTML page with:

  • Master audio player (if stitched)
  • Individual segment players with titles and durations
  • Collapsible script text for each segment
  • Regeneration command hints

Templates

Templates auto-inject intro/outro segments around the script content:

TemplatePrependsAppends
youtubetemplates/youtube_intro.txttemplates/youtube_outro.txt
podcasttemplates/podcast_intro.txt
shortformtemplates/shortform_hook.txt

Edit the files in templates/ to customize the intro/outro text.


Caching

Segments are cached by a hash of: text content + voice ID + language.

  • Unchanged segments are skipped on rebuild — fast iteration
  • Modified segments are re-rendered automatically
  • Use --force to re-render everything
  • Cache manifest is stored in segments/.cache.json

Multilingual support

Voice.ai supports 11 languages. Use --language <code> to switch:

en, es, fr, de, it, pt, pl, ru, nl, sv, ca

The pipeline auto-selects the multilingual TTS model for non-English languages.


Troubleshooting

IssueSolution
ffmpeg missingPipeline still works — you get segments, review page, chapters, captions. Install ffmpeg for master stitching and video muxing.
Rate limits (429)Segments render sequentially, which stays under most limits. Wait and retry.
Insufficient credits (402)Top up at voice.ai/dashboard. Cached segments won't re-use credits on retry.
Long scriptsCaching makes rebuilds fast. Text over 490 chars per segment is automatically split across API calls.
Windows pathsWrap paths with spaces in quotes: --input "C:\My Scripts\script.md"

See references/TROUBLESHOOTING.md for more.


References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.57%
按下载量换算10,548

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills