Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计通过

edge-tts边缘 tts

Agent Skill

edge-tts 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

636

周安装

26

GitHub Stars

2

下载量

204
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:edge-tts(边缘 tts)
来源仓库:https://github.com/lirrensi/agent-cli-helpers
仓库路径:skills/edge-tts
安装命令:
npx skills add https://github.com/lirrensi/agent-cli-helpers --skill edge-tts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lirrensi/agent-cli-helpers --skill edge-tts

简介

edge-tts 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

PowerShell / Terminal TTS Skill (edge-tts)

Use edge-tts — free, neural-quality voices (400+), works from any terminal. No Windows API nonsense. Sounds like a real human. 🎉


Step 1 — Check & Install

Always check if installed first:

Get-Command edge-tts -ErrorAction SilentlyContinue

Install with uv (preferred):

uv tool install edge-tts

Fallback with pip:

pip install edge-tts

This installs two executables: edge-tts (generate audio) and edge-playback (speak aloud).


Step 2 — Basic Usage

Speak aloud (use edge-playback, NOT edge-tts --play):

edge-playback --text "Hello world"

Save to MP3:

edge-tts --text "Hello world" --write-media output.mp3
⚠️ --play flag does NOT exist on Windows. Always use edge-playback to speak aloud.

Step 3 — Voices

List ALL voices (400+):

edge-tts --list-voices

Filter voices by language in PowerShell:

edge-tts --list-voices | Select-String "en-US"
edge-tts --list-voices | Select-String "Female"

Recommended English neural voices:

VoiceGenderStyle
en-US-AriaNeuralFemaleNatural, warm
en-US-JennyNeuralFemaleFriendly
en-US-GuyNeuralMaleNatural
en-US-EricNeuralMaleCalm
en-GB-SoniaNeuralFemaleBritish
en-GB-RyanNeuralMaleBritish
en-AU-NatashaNeuralFemaleAustralian

Use a specific voice:

edge-playback --voice "en-US-AriaNeural" --text "Hi, I'm Aria!"
edge-tts --voice "en-US-AriaNeural" --text "Hi" --write-media aria.mp3

Step 4 — Rate, Volume, Pitch

All adjustments use +X% or -X% string format:

# Rate: default is +0%, range roughly -50% to +100%
edge-playback --voice "en-US-AriaNeural" --rate "+20%" --text "Faster speech"
edge-playback --voice "en-US-AriaNeural" --rate "-30%" --text "Slower speech"

# Volume: default +0%
edge-playback --voice "en-US-AriaNeural" --volume "+50%" --text "Louder"

# Pitch: default +0Hz
edge-playback --voice "en-US-AriaNeural" --pitch "+10Hz" --text "Higher pitch"

The Complete Say.ps1 Script

When the user wants a full CLI wrapper script, generate this:

<#
.SYNOPSIS
    TTS CLI wrapper around edge-tts / edge-playback.

.DESCRIPTION
    Speaks text aloud or saves to MP3. Supports pipeline input,
    voice selection, rate/volume/pitch control, and voice listing/search.

.EXAMPLE
    .\Say.ps1 "Hello world"
    .\Say.ps1 -Text "Hello" -Voice "en-US-AriaNeural" -Rate "+20%"
    .\Say.ps1 -Text "Hello" -OutFile speech.mp3
    .\Say.ps1 -List
    .\Say.ps1 -Search "en-GB"
    "Hello from pipeline" | .\Say.ps1
#>

[CmdletBinding(DefaultParameterSetName = 'Speak')]
param(
    [Parameter(ParameterSetName='Speak', Position=0, ValueFromPipeline=$true)]
    [string]$Text,

    [Parameter(ParameterSetName='Speak')]
    [string]$Voice = 'en-US-AriaNeural',

    # Rate adjustment e.g. "+20%", "-10%"
    [Parameter(ParameterSetName='Speak')]
    [string]$Rate = '+0%',

    # Volume adjustment e.g. "+50%", "-20%"
    [Parameter(ParameterSetName='Speak')]
    [string]$Volume = '+0%',

    # Pitch adjustment e.g. "+5Hz", "-10Hz"
    [Parameter(ParameterSetName='Speak')]
    [string]$Pitch = '+0Hz',

    # Save to MP3 file (speaks aloud if omitted)
    [Parameter(ParameterSetName='Speak')]
    [string]$OutFile,

    # Also speak aloud when saving to file
    [Parameter(ParameterSetName='Speak')]
    [switch]$Also,

    [Parameter(ParameterSetName='List', Mandatory)]
    [switch]$List,

    [Parameter(ParameterSetName='Search', Mandatory)]
    [string]$Search
)

begin {
    # Check edge-tts is installed
    if (-not (Get-Command edge-tts -ErrorAction SilentlyContinue)) {
        Write-Error "edge-tts not found. Install with: uv tool install edge-tts"
        exit 1
    }

    # LIST mode
    if ($PSCmdlet.ParameterSetName -eq 'List') {
        edge-tts --list-voices
        return
    }

    # SEARCH mode
    if ($PSCmdlet.ParameterSetName -eq 'Search') {
        Write-Host "Voices matching '$Search':" -ForegroundColor Cyan
        edge-tts --list-voices | Select-String $Search
        return
    }
}

process {
    if ($PSCmdlet.ParameterSetName -ne 'Speak') { return }
    if (-not $Text) { return }

    $baseArgs = @(
        '--voice',  $Voice,
        '--rate',   $Rate,
        '--volume', $Volume,
        '--pitch',  $Pitch,
        '--text',   $Text
    )

    if ($OutFile) {
        & edge-tts @baseArgs --write-media $OutFile
        Write-Host "Saved to: $OutFile" -ForegroundColor Green
        if ($Also) {
            & edge-playback @baseArgs
        }
    } else {
        & edge-playback @baseArgs
    }
}

Pipeline Examples

# Simple string
"Good morning!" | .\Say.ps1

# From file
Get-Content notes.txt | .\Say.ps1 -Voice "en-GB-SoniaNeural"

# Command output
(Get-Date -Format "dddd, MMMM d") | .\Say.ps1

# Save to file
"Hello" | .\Say.ps1 -OutFile hello.mp3

# Speak AND save
.\Say.ps1 -Text "Hello" -OutFile hello.mp3 -Also

Common Gotchas

  • --play doesn't exist on Windows — always use edge-playback executable instead
  • Rate/Volume/Pitch need +X% / +XHz format — not plain numbers
  • Requires internet — edge-tts calls Microsoft's servers for synthesis
  • Output is MP3 not WAV — use ffmpeg if WAV needed: ffmpeg -i out.mp3 out.wav
  • Voice names are case-sensitiveen-US-AriaNeural not en-us-arianeural
  • uv tool install puts executables in uv's tool bin — make sure it's on PATH

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34%
按下载量换算69

Claude

30.01%
按下载量换算61

Cursor

19.73%
按下载量换算40

Gemini CLI

9.05%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills