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

text-to-speech-and-voice-cloning-agent文本到语音和语音克隆 Agent

Agent Skill

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

总安装

8,726

周安装

353

GitHub Stars

公开资料未说明

下载量

2,739
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:text-to-speech-and-voice-cloning-agent(文本到语音和语音克隆 Agent)
来源仓库:https://github.com/verbatik/text-to-speech-and-voice-cloning-agent
安装命令:
openclaw skills install text-to-speech-and-voice-cloning-agent
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install text-to-speech-and-voice-cloning-agent

简介

使用 Verbatik API 实现文本转语音与声音克隆功能,增强语音交互能力。

  • 适用于需要生成语音、克隆特定音色或管理多角色语音的项目。
  • 输入文本后可生成语音文件或克隆声音模型,支持多种语言与语调。
  • 安装命令:openclaw skills install text-to-speech-and-voice-cloning-agent,需确认 API 密钥权限。
  • 涉及人声克隆或公开发布时,应先核对授权与隐私合规边界。

SKILL.md

name
verbatik-tts-assistant
version
1.0.0
title
Text-to-Speech & Voice Cloning Assistant (via Verbatik)
description
Turn your AI assistant into a TTS and voice cloning powerhouse using the Verbatik API. Use when generating speech from text, cloning voices, managing cloned voices, browsing 2700+ pre-trained voices, or checking account balance. Covers standard TTS, cloned voice TTS with emotion/speed/pitch controls, voice cloning from audio, and prepaid billing.
license
MIT
author
Verbatik
homepage
https://api.verbatik.com
keywords
tts, text-to-speech, voice-cloning, speech-synthesis, audio, verbatik, voices, ai-voice
metadata
openclaw
requires
env
primaryEnv
VERBATIK_API_KEY

Text-to-Speech & Voice Cloning Assistant (via Verbatik)

Autonomously generate speech, clone voices, and manage audio via the Verbatik API.

Setup

  1. Create a Verbatik account at api.verbatik.com
  2. Top up your prepaid balance (Settings → Billing)
  3. Generate an API key (Settings → API Keys)
  4. Store your API key:
   VERBATIK_API_KEY=vbt_your_api_key_here

Auth

All requests use Bearer token:

Authorization: Bearer <VERBATIK_API_KEY>

Base URL: https://api.verbatik.com

MCP (Model Context Protocol)

Verbatik also exposes an MCP server for direct AI assistant integration. Endpoint:

https://api.verbatik.com/api/mcp/mcp

Supports OAuth 2.1 (one-click connect in Claude Desktop) and API key auth via mcp-remote bridge.

Core Workflow

1. List Available Voices

GET /api/v1/voices

Query params:

  • language — filter by language code (e.g. en-US, fr-FR)
  • genderMale, Female, or Neutral
  • search — search by voice name

Returns array of voices with id (slug), name, gender, language_code, language_name, is_neural, sample_url, styles.

2. Text-to-Speech (Pre-trained Voices)

POST /api/v1/tts
Content-Type: text/plain
Authorization: Bearer <key>
X-Voice-ID: jenny-en-us
X-Store-Audio: true

Hello, this is a test of the Verbatik text-to-speech API.

Headers:

  • Content-Typetext/plain or application/ssml+xml for SSML
  • X-Voice-ID — voice slug (e.g. jenny-en-us). Defaults to Jenny if omitted
  • X-Store-Audiotrue to get a stored URL back, false for binary audio stream

Max text length: 50,000 characters. Large texts are automatically chunked.

Cost: $0.002 per 1,000 characters

Response (when X-Store-Audio: true):

{
  "success": true,
  "audio_url": "https://...",
  "characters_processed": 52,
  "chunks_processed": 1,
  "response_time_ms": 1200,
  "cost_cents": 1
}

Response (when X-Store-Audio: false): Binary audio with metadata in response headers (X-Characters-Processed, X-Cost-Cents, X-Balance-Cents).

3. Clone a Voice

POST /api/v1/voice-training
Content-Type: application/json
Authorization: Bearer <key>

{
  "audio_url": "https://example.com/sample.mp3",
  "name": "My Voice",
  "noise_reduction": true,
  "volume_normalization": true,
  "preview_text": "Hello, this is a preview of my cloned voice!"
}

Requirements:

  • Audio must be at least 10 seconds of speech
  • Supported formats: .mp3, .wav (max 20MB)
  • Cost: $3.00 per clone

Response:

{
  "success": true,
  "voice_id": "uuid-here",
  "name": "My Voice",
  "fal_voice_id": "...",
  "preview_url": "https://...",
  "cost_cents": 300
}

4. Generate Speech with Cloned Voice

POST /api/v1/voice-cloning
Content-Type: text/plain
Authorization: Bearer <key>
X-Voice-ID: <cloned_voice_uuid>
X-Store-Audio: true

Hello from my cloned voice!

Optional headers for voice control:

  • X-Speed0.5 to 2.0 (default: 1)
  • X-Volume0 to 10 (default: 1)
  • X-Pitch-12 to 12 (default: 0)
  • X-Emotionhappy, sad, angry, fearful, disgusted, surprised, neutral
  • X-Formatmp3, pcm, flac (default: mp3)
  • X-Language-Boost — language to enhance (e.g. English, French, Japanese)
  • X-Sample-Rate8000, 16000, 22050, 24000, 32000, 44100
  • X-Bitrate32000, 64000, 128000, 256000

Voice modification (Speech 2.8 Turbo):

  • X-Voice-Modify-Pitch-100 to 100
  • X-Voice-Modify-Intensity-100 to 100
  • X-Voice-Modify-Timbre-100 to 100

Supports interjection tags in text: (laughs), (sighs), (coughs), (clears throat), (gasps), (sniffs), (groans), (yawns)

Supports pause markers: <#x#> where x = 0.01–99.99 seconds

Max text length: 5,000 characters. Cost: $0.10 per 1,000 characters

5. Manage Cloned Voices

List all cloned voices:

GET /api/v1/my-voices

Optional query param: statuspending, ready, or failed

Get a specific voice:

GET /api/v1/my-voices/<voice_id>

Delete a voice:

DELETE /api/v1/my-voices/<voice_id>

6. Preview a Pre-trained Voice

GET /api/v1/preview/<voice_slug>

Returns binary audio preview. No auth required. Cached for 24 hours.

Pricing

ActionCost
Standard TTS (pre-trained voices)$0.002 / 1,000 chars
Cloned Voice TTS$0.10 / 1,000 chars
Voice Cloning$3.00 / clone
List voices, check balance, estimate costFree

All usage is deducted from your prepaid balance. Auto top-up is available.

Error Handling

StatusMeaning
401Invalid or missing API key
402Insufficient balance — top up required
400Bad request (invalid params, text too long, voice not found)
404Voice not found or doesn't belong to your workspace
429Rate limit exceeded — check Retry-After header
500Server error

Tips

  • Always use X-Store-Audio: true when you need a shareable URL — binary mode is for streaming
  • Use voice slugs (e.g. jenny-en-us) not internal IDs for pre-trained voices
  • Use UUIDs from voice-training or my-voices for cloned voices
  • Clone voices with clean audio (minimal background noise) for best results
  • Use noise_reduction: true when cloning from imperfect audio
  • Cloned voices expire after 7 days of inactivity — Verbatik auto-refreshes them via cron
  • Estimate costs before large batches with the estimate_cost MCP tool
  • Check your balance before bulk operations to avoid 402 errors
  • Use emotion and speed controls on cloned voices for more natural output
  • SSML is supported for pre-trained voices — use Content-Type: application/ssml+xml

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.71%
按下载量换算2,430

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills