Token导航 LogoToken导航TokenDH.com
前端设计敏感数据unknown未标认证来源可访问许可证需确认审计未展示

doubao-api-open-ttsdoubao API open TTS 文档

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

212

周安装

9

下载量

74
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:doubao-api-open-tts(doubao API open TTS 文档)
来源仓库:https://skills.volces.com
仓库路径:doubao-api-open-tts
安装命令:
cd skills/volcano-tts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.sh安装方式未标明
cd skills/volcano-tts

简介

豆包 Open TTS 文本转语音服务,支持200+语音选项和多格式音频输出。

  • 适用于需要自然语音合成的 Local Agent 应用场景。
  • 提供命令行工具和 Python API 双接口,支持 mp3、pcm、wav 格式。
  • 必须配置 API 凭证,未设置时会提示用户输入默认语音确认。
  • 可调节语速和音量参数,按类别浏览可用语音资源。

SKILL.md

Doubao Open TTS

Text-to-Speech (TTS) service using Doubao (Volcano Engine) API V1 interface to convert text into natural-sounding speech.

Features

  • 🎙️ 200+ Voice Options - Default: Shiny (灿灿) for general scenarios
  • 🔊 Multiple Audio Formats - Supports mp3, pcm, wav
  • Adjustable Parameters - Speed and volume control
  • 📦 Dual Interface - Command-line tool + Python API
  • 🎯 Voice Categorization - Browse voices by category
  • 🔐 Mandatory API Configuration - Requires API credentials; stops and prompts user if not configured (default voice only available with explicit user confirmation)

Quick Start for Agents

重要提示: 当检测到没有API配置时,Agent必须立即停止并询问用户是否配置API,不允许直接使用默认音色生成音频,除非用户明确坚持使用默认音色。

When using this SKILL, the Agent should follow this workflow:

Step 1: Check API Configuration

First, check if API credentials are configured:

from scripts.tts import check_api_config, setup_api_config

# Check if API is configured
config = check_api_config()
if not config:
    # API not configured, MUST stop and ask user
    # DO NOT proceed with default voice
    print("⚠️ API credentials not found. Cannot proceed without API configuration.")
    # ... ask user for credentials or if they want to use default

Step 2: Handle Missing API Configuration

如果API凭证缺失,Agent必须停止并询问用户: 用户可以选择配置API,或者明确坚持使用默认音色(仅当用户明确要求时才允许)。

Agent: I need API credentials to use the Doubao TTS service.
       Please provide the following information:

1. App ID (APPID)
2. Access Token
3. Secret Key

You can get these from: https://console.volcengine.com/

Please enter your App ID:

User: 4269953601

Agent: Please enter your Access Token:

User: uAGE3iP8nJf3ewu-d6U1P6Jthv7i1DH7

Agent: Please enter your Secret Key:

User: Dfta36aYgcdqY-ylHoh9FQyqiERS5iTv

Agent: [Saves credentials to .env file]
       ✅ API configuration saved successfully!

用户选择: 如果用户不想配置API但坚持使用默认音色:

User: 我不想配置API,就用默认音色吧

Agent: ⚠️ 确认使用默认音色吗?这将使用内置的默认音色生成音频。
       输入 'yes' 确认使用默认音色,或提供API凭证以获得更好的体验。

User: yes

Agent: [继续执行,使用默认音色]

Step 3: Use the Service

After API is configured OR user explicitly confirmed to use default voice:

from scripts.tts import VolcanoTTS

tts = VolcanoTTS()
output = tts.synthesize("Hello world", output_file="output.mp3")

API Configuration Detection

Function: check_api_config()

Checks if API credentials are available. Returns config dict or None.

from scripts.tts import check_api_config

config = check_api_config()
if config:
    print(f"App ID: {config['app_id']}")
    print(f"Access Token: {config['access_token'][:10]}...")
    print(f"Secret Key: {config['secret_key'][:10]}...")
else:
    print("API not configured")

Function: setup_api_config(app_id, access_token, secret_key, voice_type=None)

Saves API credentials to the.env file in the SKILL directory.

from scripts.tts import setup_api_config

# Save credentials
setup_api_config(
    app_id="4269953601",
    access_token="uAGE3iP8nJf3ewu-d6U1P6Jthv7i1DH7",
    secret_key="Dfta36aYgcdqY-ylHoh9FQyqiERS5iTv",
    voice_type="zh_female_cancan_mars_bigtts"  # optional
)

print("✅ Configuration saved to .env file")

Complete Agent Workflow Example

from scripts.tts import check_api_config, setup_api_config, VolcanoTTS

def synthesize_with_auto_config(text, output_file="output.mp3", use_default_voice=False):
    """
    Synthesize speech with automatic API configuration.

    IMPORTANT: If API is not configured, this function will STOP and ask user.
    It will NOT automatically use default voice unless user explicitly confirms.
    """
    # Step 1: Check if API is configured
    config = check_api_config()

    if not config:
        # Step 2: STOP and ask user - DO NOT proceed automatically
        print("🔐 API Configuration Required")
        print("=" * 50)
        print("\n⚠️ No API credentials found. You have two options:")
        print("\nOption 1: Configure API (Recommended)")
        print("  Please visit https://console.volcengine.com/ to get your credentials")
        print("\nOption 2: Use Default Voice")
        print("  ⚠️ Only available if you explicitly confirm")

        # Ask user what they want to do
        choice = input("\nEnter '1' to configure API, or '2' to use default voice: ").strip()

        if choice == '1':
            # Configure API
            print("\nRequired information:")
            app_id = input("1. Enter your App ID: ").strip()
            access_token = input("2. Enter your Access Token: ").strip()
            secret_key = input("3. Enter your Secret Key: ").strip()

            # Optional: ask for preferred voice
            print("\n🎙️ Optional: Select a default voice (press Enter to use Shiny)")
            voice_type = input("Voice type (or voice name): ").strip()

            # Save configuration
            setup_api_config(app_id, access_token, secret_key, voice_type or None)
            print("\n✅ Configuration saved!")

        elif choice == '2':
            # User explicitly chose to use default voice
            confirm = input("\n⚠️ Are you sure you want to use the default voice? (yes/no): ").strip().lower()
            if confirm != 'yes':
                print("❌ Cancelled. Please configure API to proceed.")
                return None
            use_default_voice = True
            print("\n⚠️ Using default voice as requested...")
        else:
            print("❌ Invalid choice. Please configure API to proceed.")
            return None

    # Step 3: Use the service
    if use_default_voice:
        # Use default voice (only when user explicitly confirmed)
        tts = VolcanoTTS(use_default=True)
    else:
        tts = VolcanoTTS()

    output_path = tts.synthesize(text, output_file=output_file)
    return output_path

# Use it
output = synthesize_with_auto_config("Hello, this is a test")
if output:
    print(f"Audio saved to: {output}")
else:
    print("Operation cancelled - API configuration required")

Configuration Methods

Installation

cd skills/volcano-tts
pip install -r requirements.txt

Configuration

Method 1: Environment Variables

export VOLCANO_TTS_APPID="your_app_id"
export VOLCANO_TTS_ACCESS_TOKEN="your_access_token"
export VOLCANO_TTS_SECRET_KEY="your_secret_key"
export VOLCANO_TTS_VOICE_TYPE="zh_female_cancan_mars_bigtts"  # Optional: set default voice

Method 2:.env File

Copy .env.example to .env and fill in your credentials:

cp .env.example .env
# Edit the .env file with your credentials

Usage

Command Line

# Basic usage (uses default voice: Shiny)
python scripts/tts.py "Hello, this is a test of Doubao text-to-speech service"

# Specify output file and format
python scripts/tts.py "Welcome to use TTS" -o output.mp3 -e mp3

# Read text from file
python scripts/tts.py -f input.txt -o output.mp3

# Adjust parameters
python scripts/tts.py "Custom voice" --speed 1.2 --volume 0.8 -v zh_female_cancan_mars_bigtts

# List all available voices
python scripts/tts.py --list-voices

# List voices by category
python scripts/tts.py --list-voices --category "General-Multilingual"

# Use different cluster
python scripts/tts.py "Hello" --cluster volcano_tts

# Enable debug mode
python scripts/tts.py "Test" --debug

Python API

from scripts.tts import VolcanoTTS, VOICE_TYPES, VOICE_CATEGORIES

# Initialize client
tts = VolcanoTTS(
    app_id="your_app_id",
    access_token="your_access_token",
    secret_key="your_secret_key",
    voice_type="zh_female_cancan_mars_bigtts"  # Optional: set default voice
)

# List available voices
print("All voices:", tts.list_voices())
print("General voices:", tts.list_voices("General-Normal"))

# Change voice
tts.set_voice("zh_male_xudong_conversation_wvae_bigtts")  # Set to "Happy Xiaodong"

# Synthesize speech
output_path = tts.synthesize(
    text="Hello, this is Doubao text-to-speech",
    voice_type="zh_female_cancan_mars_bigtts",  # Optional: override default
    encoding="mp3",
    cluster="volcano_tts",
    speed=1.0,
    volume=1.0,
    output_file="output.mp3"
)

print(f"Audio saved to: {output_path}")

Interactive Voice Selection

The SKILL supports interactive voice selection workflow for Agent-User collaboration:

Workflow

  1. Agent Prompts User - Agent asks user to select a voice
  2. Display Voice Options - Show recommended voices by category
  3. User Selection - User tells Agent their preferred voice
  4. Agent Calls Skill - Agent uses the selected voice to generate audio

Python API for Interactive Selection

重要: 在使用以下代码之前,必须先检查API配置。如果没有配置,必须停止并询问用户。

from scripts.tts import (
    get_voice_selection_prompt,
    find_voice_by_name,
    get_voice_info,
    check_api_config,
    VolcanoTTS
)

# Step 0: Check API configuration FIRST
config = check_api_config()
if not config:
    print("⚠️ API credentials not found. Please configure API first.")
    print("Visit: https://console.volcengine.com/")
    # STOP here and ask user to configure API
    # DO NOT proceed with voice selection until API is configured
    # OR user explicitly confirms to use default voice

# Step 1: Get the selection prompt to show user
prompt = get_voice_selection_prompt()
print(prompt)
# Agent displays this to user and waits for response

# Step 2: User responds with their choice (e.g., "Shiny" or "灿灿")
user_input = "Shiny"  # This comes from user

# Step 3: Find the voice_type from user input
voice_type, voice_name = find_voice_by_name(user_input)
if voice_type:
    print(f"Selected voice: {voice_name} ({voice_type})")

    # Get detailed info
    info = get_voice_info(voice_type)
    print(f"Category: {info['category_display']}")

    # Step 4: Use the voice to synthesize (API already verified)
    tts = VolcanoTTS(
        app_id="your_app_id",
        access_token="your_access_token",
        secret_key="your_secret_key"
    )

    output_path = tts.synthesize(
        text="Hello, this is the selected voice",
        voice_type=voice_type,
        output_file="output.mp3"
    )
    print(f"Audio saved to: {output_path}")
else:
    print("Voice not found. Please select a valid voice.")
    # DO NOT automatically use default - ask user instead

Example Agent-User Conversation

Agent: 🎙️ Please select a voice for text-to-speech synthesis:

Here are our recommended voices by category:

[General - Normal]
  • 灿灿/Shiny [DEFAULT] (Chinese) -> voice_type: zh_female_cancan_mars_bigtts
  • 快乐小东 (Chinese) -> voice_type: zh_male_xudong_conversation_wvae_bigtts
  • 亲切女声 (Chinese) -> voice_type: zh_female_qinqienvsheng_moon_bigtts

[Roleplay]
  • 纯真少女 (Chinese) -> voice_type: ICL_zh_female_chunzhenshaonv_e588402fb8ad_tob
  • 霸道总裁 (Chinese) -> voice_type: ICL_zh_male_badaozongcai_v1_tob
  • 撒娇男友 (Chinese) -> voice_type: ICL_zh_male_sajiaonanyou_tob

[Video Dubbing]
  • 猴哥 (Chinese) -> voice_type: zh_male_sunwukong_mars_bigtts
  • 熊二 (Chinese) -> voice_type: zh_male_xionger_mars_bigtts
  • 佩奇猪 (Chinese) -> voice_type: zh_female_peiqi_mars_bigtts

💡 Tips:
  • You can say the voice name (e.g., 'Shiny', '猴哥', '霸道总裁')
  • Or provide the voice_type directly
  • Type 'list all' to see all 200+ available voices
  • Press Enter to use the default voice (Shiny) - **only if API is configured**

⚠️ **Note**: Voice selection requires API credentials. If not configured, you must configure API first or explicitly confirm to use default voice.

Which voice would you like to use?

User: I want to use 猴哥

Agent: [Calls skill with voice_type="zh_male_sunwukong_mars_bigtts"]
       ✅ Generated audio with voice: 猴哥

Supported Input Formats

The find_voice_by_name() function supports:

  • Direct voice_type: zh_female_cancan_mars_bigtts
  • Chinese name: 灿灿, 猴哥, 霸道总裁
  • English alias: Shiny, Skye, Alvin
  • Partial match: 灿灿 matches 灿灿/Shiny

Parameters

ParameterDescriptionDefaultOptions
voice_typeVoice typezh_female_cancan_mars_bigttsSee voice list below
encodingAudio formatmp3mp3, pcm, wav
sample_rateSample rate240008000, 16000, 24000
speedSpeech speed1.00.5 - 2.0
volumeVolume level1.00.5 - 2.0
clusterCluster namevolcano_ttsvolcano_tts

Voice Categories

General - Multilingual (with emotion support)

Supported emotions: happy, sad, angry, surprised, fear, hate, excited, coldness, neutral, depressed, lovey-dovey, shy, comfort, tension, tender, storytelling, radio, magnetic, advertising, vocal-fry, ASMR, news, entertainment, dialect

voice_typeVoice NameLanguage
zh_male_lengkugege_emo_v2_mars_bigttsCold Brother (Emotion)Chinese
zh_female_tianxinxiaomei_emo_v2_mars_bigttsSweet Xiaomei (Emotion)Chinese
zh_female_gaolengyujie_emo_v2_mars_bigttsCold Lady (Emotion)Chinese
zh_male_aojiaobazong_emo_v2_mars_bigttsProud CEO (Emotion)Chinese
zh_male_guangzhoudege_emo_mars_bigttsGuangzhou Brother (Emotion)Chinese
zh_male_jingqiangkanye_emo_mars_bigttsBeijing Style (Emotion)Chinese
zh_female_linjuayi_emo_v2_mars_bigttsNeighbor Aunt (Emotion)Chinese
zh_male_yourougongzi_emo_v2_mars_bigttsGentleman (Emotion)Chinese
zh_male_ruyayichen_emo_v2_mars_bigttsElegant Boyfriend (Emotion)Chinese
zh_male_junlangnanyou_emo_v2_mars_bigttsHandsome Boyfriend (Emotion)Chinese
zh_male_beijingxiaoye_emo_v2_mars_bigttsBeijing Guy (Emotion)Chinese
zh_female_roumeinvyou_emo_v2_mars_bigttsGentle Girlfriend (Emotion)Chinese
zh_male_yangguangqingnian_emo_v2_mars_bigttsSunshine Youth (Emotion)Chinese
zh_female_meilinvyou_emo_v2_mars_bigttsCharming Girlfriend (Emotion)Chinese
zh_female_shuangkuaisisi_emo_v2_mars_bigttsCheerful Sisi (Emotion)Chinese/American English
en_female_candice_emo_v2_mars_bigttsCandice (Emotion)American English
en_female_skye_emo_v2_mars_bigttsSerena (Emotion)American English
en_male_glen_emo_v2_mars_bigttsGlen (Emotion)American English
en_male_sylus_emo_v2_mars_bigttsSylus (Emotion)American English
en_male_corey_emo_v2_mars_bigttsCorey (Emotion)British English
en_female_nadia_tips_emo_v2_mars_bigttsNadia (Emotion)British English
zh_male_shenyeboke_emo_v2_mars_bigttsLate Night Podcast (Emotion)Chinese

General - Normal

voice_typeVoice NameLanguage
zh_female_cancan_mars_bigttsShiny (灿灿) ⭐DefaultChinese/American English
zh_female_qinqienvsheng_moon_bigttsFriendly FemaleChinese
zh_male_xudong_conversation_wvae_bigttsHappy XiaodongChinese
zh_female_shuangkuaisisi_moon_bigttsCheerful Sisi/SkyeChinese/American English
zh_male_wennuanahu_moon_bigttsWarm Ahu/AlvinChinese/American English
zh_male_yangguangqingnian_moon_bigttsSunshine YouthChinese
zh_female_linjianvhai_moon_bigttsGirl Next DoorChinese
zh_male_yuanboxiaoshu_moon_bigttsKnowledgeable UncleChinese
zh_female_gaolengyujie_moon_bigttsCold LadyChinese
zh_male_aojiaobazong_moon_bigttsProud CEOChinese
zh_female_meilinvyou_moon_bigttsCharming GirlfriendChinese
zh_male_shenyeboke_moon_bigttsLate Night PodcastChinese
zh_male_dongfanghaoran_moon_bigttsOriental HaoranChinese

Roleplay

voice_typeVoice NameLanguage
ICL_zh_female_chunzhenshaonv_e588402fb8ad_tobInnocent GirlChinese
ICL_zh_male_xiaonaigou_edf58cf28b8b_tobCute BoyChinese
ICL_zh_female_jinglingxiangdao_1beb294a9e3e_tobElf GuideChinese
ICL_zh_male_menyoupingxiaoge_ffed9fc2fee7_tobSilent GuyChinese
ICL_zh_male_anrenqinzhu_cd62e63dcdab_tobDark LordChinese
ICL_zh_male_badaozongcai_v1_tobDominant CEOChinese
ICL_zh_male_bingruogongzi_tobSickly GentlemanChinese
ICL_zh_female_bingjiao3_tobEvil QueenChinese
ICL_zh_male_shuanglangshaonian_tobCheerful YouthChinese
ICL_zh_male_sajiaonanyou_tobClingy BoyfriendChinese
ICL_zh_male_wenrounanyou_tobGentle BoyfriendChinese
ICL_zh_male_tiancaitongzhuo_tobGenius DeskmateChinese
ICL_zh_male_bingjiaoshaonian_tobYandere YouthChinese
ICL_zh_male_bingjiaonanyou_tobYandere BoyfriendChinese
ICL_zh_male_bingruoshaonian_tobSickly YouthChinese
ICL_zh_male_bingjiaogege_tobYandere BrotherChinese
ICL_zh_female_bingjiaojiejie_tobYandere SisterChinese
ICL_zh_male_bingjiaodidi_tobYandere Brother (Young)Chinese
ICL_zh_female_bingruoshaonv_tobSickly GirlChinese
ICL_zh_female_bingjiaomengmei_tobYandere Cute GirlChinese
ICL_zh_male_bingjiaobailian_tobYandere White LotusChinese

Video Dubbing

voice_typeVoice NameLanguage
zh_male_M100_conversation_wvae_bigttsGentlemanChinese
zh_female_maomao_conversation_wvae_bigttsQuiet MaomaoChinese
zh_male_tiancaitongsheng_mars_bigttsChild ProdigyChinese
zh_male_sunwukong_mars_bigttsMonkey KingChinese
zh_male_xionger_mars_bigttsBear TwoChinese
zh_female_peiqi_mars_bigttsPeppa PigChinese
zh_female_wuzetian_mars_bigttsEmpress WuChinese
zh_female_yingtaowanzi_mars_bigttsCherry MarukoChinese
zh_male_silang_mars_bigttsSilangChinese
zh_male_jieshuonansheng_mars_bigttsNarrator/MorganChinese/American English

Audiobook

voice_typeVoice NameLanguage
zh_male_changtianyi_mars_bigttsMystery NarratorChinese
zh_male_ruyaqingnian_mars_bigttsElegant YouthChinese
zh_male_baqiqingshu_mars_bigttsDominant UncleChinese
zh_male_qingcang_mars_bigttsQingcangChinese
zh_female_gufengshaoyu_mars_bigttsAncient Style LadyChinese
zh_female_wenroushunv_mars_bigttsGentle LadyChinese

Multilingual

voice_typeVoice NameLanguage
en_female_lauren_moon_bigttsLaurenAmerican English
en_male_michael_moon_bigttsMichaelAmerican English
en_male_bruce_moon_bigttsBruceAmerican English
en_female_emily_mars_bigttsEmilyBritish English
en_male_smith_mars_bigttsSmithBritish English
en_female_anna_mars_bigttsAnnaBritish English

IP Voices

voice_typeVoice NameLanguage
zh_male_hupunan_mars_bigttsShanghai MaleChinese
zh_male_lubanqihao_mars_bigttsLuban No.7Chinese
zh_female_yangmi_mars_bigttsLin XiaoChinese
zh_female_linzhiling_mars_bigttsSister LinglingChinese
zh_female_jiyejizi2_mars_bigttsKasukabe SisterChinese
zh_male_tangseng_mars_bigttsTang MonkChinese
zh_male_zhuangzhou_mars_bigttsZhuang ZhouChinese
zh_male_zhubajie_mars_bigttsZhu BajieChinese
zh_female_ganmaodianyin_mars_bigttsSick Electronic SisterChinese
zh_female_naying_mars_bigttsFrank YingChinese
zh_female_leidian_mars_bigttsFemale ThorChinese

Fun Accents

voice_typeVoice NameLanguage
zh_female_yueyunv_mars_bigttsCantonese GirlChinese
zh_male_yuzhouzixuan_moon_bigttsHenan BoyChinese-Henan Accent
zh_female_daimengchuanmei_moon_bigttsSichuan GirlChinese-Sichuan Accent
zh_male_guangxiyuanzhou_moon_bigttsGuangxi BoyChinese-Guangxi Accent
zh_male_zhoujielun_emo_v2_mars_bigttsNunchaku GuyChinese-Taiwan Accent
zh_female_wanwanxiaohe_moon_bigttsTaiwan XiaoheChinese-Taiwan Accent
zh_female_wanqudashu_moon_bigttsBay Area UncleChinese-Guangdong Accent
zh_male_guozhoudege_moon_bigttsGuangzhou BrotherChinese-Guangdong Accent
zh_male_haoyuxiaoge_moon_bigttsQingdao BoyChinese-Qingdao Accent
zh_male_beijingxiaoye_moon_bigttsBeijing GuyChinese-Beijing Accent
zh_male_jingqiangkanye_moon_bigttsBeijing Style/HarmonyChinese-Beijing/American English
zh_female_meituojieer_moon_bigttsChangsha GirlChinese-Changsha Accent

Customer Service

voice_typeVoice NameLanguage
ICL_zh_female_lixingyuanzi_cs_tobRational YuanziChinese
ICL_zh_female_qingtiantaotao_cs_tobSweet TaotaoChinese
ICL_zh_female_qingxixiaoxue_cs_tobClear XiaoxueChinese
ICL_zh_female_qingtianmeimei_cs_tobSweet MeimeiChinese
ICL_zh_female_kailangtingting_cs_tobCheerful TingtingChinese
ICL_zh_male_qingxinmumu_cs_tobFresh MumuChinese
ICL_zh_male_shuanglangxiaoyang_cs_tobCheerful XiaoyangChinese
ICL_zh_male_qingxinbobo_cs_tobFresh BoboChinese
ICL_zh_female_wenwanshanshan_cs_tobGentle ShanshanChinese
ICL_zh_female_tianmeixiaoyu_cs_tobSweet XiaoyuChinese
ICL_zh_female_reqingaina_cs_tobEnthusiastic AinaChinese
ICL_zh_female_tianmeixiaoju_cs_tobSweet XiaojuChinese
ICL_zh_male_chenwenmingzai_cs_tobSteady MingzaiChinese
ICL_zh_male_qinqiexiaozhuo_cs_tobFriendly XiaozhuoChinese
ICL_zh_female_lingdongxinxin_cs_tobLively XinxinChinese
ICL_zh_female_guaiqiaokeer_cs_tobGood KeerChinese
ICL_zh_female_nuanxinqianqian_cs_tobWarm QianqianChinese
ICL_zh_female_ruanmengtuanzi_cs_tobSoft TuanziChinese
ICL_zh_male_yangguangyangyang_cs_tobSunny YangyangChinese
ICL_zh_female_ruanmengtangtang_cs_tobSoft TangtangChinese
ICL_zh_female_xiuliqianqian_cs_tobBeautiful QianqianChinese
ICL_zh_female_kaixinxiaohong_cs_tobHappy XiaohongChinese
ICL_zh_female_qingyingduoduo_cs_tobLight DuoduoChinese
zh_female_kefunvsheng_mars_bigttsWarm FemaleChinese
Tip: Use python scripts/tts.py --list-voices to see the complete voice list

Get API Credentials

  1. Visit Volcano Engine Console
  2. Enable "Doubao Voice" service
  3. Create an application in the console to get AppID, Access Token, and Secret Key
  4. Ensure your account has sufficient TTS quota

Troubleshooting

Error: "requested resource not granted"

Cause: Account lacks TTS service permission

Solution:

  1. Login to Volcano Engine Console
  2. Go to "Doubao Voice" product page
  3. Confirm service is enabled and has available quota
  4. Check if Token has TTS calling permission

Error: "invalid auth token"

Cause: Authentication information error

Solution:

  1. Check if AppID, Access Token, Secret Key are correct
  2. Ensure no extra spaces

Error: "requested resource not found"

Cause: Voice type or cluster name error

Solution:

  1. Try different voice_type, such as BV001_streaming, BV002_streaming
  2. Try different cluster, such as volcano_tts, volcano

Test Configuration

Run test script to try multiple configurations:

python scripts/test_tts.py

Notes

  • Ensure your account has sufficient speech synthesis quota
  • Text length limits refer to official documentation
  • Network request timeout defaults to 30 seconds

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

77.88%
按下载量换算58

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills