full-aigc-skills/coze-skills · Archived

coze-voice-gen

Text-to-Speech (TTS) and Speech-to-Text (ASR) using coze-coding-dev-sdk. Returns results directly to stdout.

First seen Aug 11, 2026

Installation

$ npx skills add full-aigc-skills/coze-skills --skill coze-voice-gen

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from full-aigc-skills/coze-skills.

npx skills add full-aigc-skills/coze-skills

Browse all from full-aigc-skills/coze-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents clawdbot

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,613 B
  • docs SUMMARY.md 130 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

Coze Voice Generation

Text-to-Speech (TTS) and Automatic Speech Recognition (ASR) using coze-coding-dev-sdk.

Text-to-Speech (TTS)

Single Audio

npx ts-node {baseDir}/scripts/tts.ts --text "Hello, welcome to our service!"

With Different Voice

npx ts-node {baseDir}/scripts/tts.ts \
  --text "This is a male voice" \
  --speaker zh_male_m191_uranus_bigtts

Batch Generation

npx ts-node {baseDir}/scripts/tts.ts \
  --texts "Chapter 1: Introduction" "Chapter 2: Getting Started" "Chapter 3: Advanced Topics" \
  --speaker zh_female_xueayi_saturn_bigtts

With Custom Parameters

npx ts-node {baseDir}/scripts/tts.ts \
  --text "Fast and loud announcement!" \
  --speech-rate 30 \
  --loudness-rate 20 \
  --format mp3 \
  --sample-rate 48000

TTS Options

Option Description
--text <text> Single text to synthesize
--texts <texts...> Multiple texts for batch generation
--speaker <id> Voice ID (default: zhfemalexiaoheuranusbigtts)
--format <fmt> mp3, pcm, ogg_opus (default: mp3)
--sample-rate <hz> 8000-48000 (default: 24000)
--speech-rate <n> -50 to 100 (default: 0)
--loudness-rate <n> -50 to 100 (default: 0)

TTS Output

The script outputs audio URLs directly to stdout:

[1/1] Hello, welcome to our service!
  https://example.com/generated-audio.mp3

Available Voices

General Purpose:

  • zhfemalexiaoheuranusbigtts - Xiaohe (default)
  • zhfemalevvuranusbigtts - Vivi (Chinese & English)
  • zhmalem191uranusbigtts - Yunzhou (male)
  • zhmaletaochenguranusbigtts - Xiaotian (male)

Audiobook:

  • zhfemalexueayisaturnbigtts - Children's audiobook

Video Dubbing:

  • zhmaledayisaturnbigtts - Dayi (male)
  • zhfemalemizaisaturnbigtts - Mizai (female)
  • zhfemalejitangnvsaturnbigtts - Motivational female

Role Playing:

  • saturnzhfemalekeainvshengtob - Cute girl
  • saturnzhmaleshuanglangshaoniantob - Cheerful boy

Speech-to-Text (ASR)

From URL

npx ts-node {baseDir}/scripts/asr.ts --url "https://example.com/audio.mp3"

From Local File

npx ts-node {baseDir}/scripts/asr.ts --file ./recording.mp3

ASR Options

Option Description
--url <url> Audio file URL
--file <path> Local audio file path

ASR Output

Transcription is printed directly to stdout:

============================================================
TRANSCRIPTION
============================================================
Hello, this is the transcribed text from the audio file...
============================================================

Duration: 1m 30s
Segments: 5

ASR Requirements

  • Duration: ≤ 2 hours
  • File size: ≤ 100MB
  • Formats: WAV, MP3, OGG OPUS, M4A

Notes

  • Audio URLs have valid expiration - use directly when possible
  • Speech rate: negative = slower, positive = faster
  • Loudness rate: negative = quieter, positive = louder