← 返回
效率工具 中文

Generate Protoss-style (StarCraft) voice effects using SoX and FFmpeg.

Apply Protoss-style (StarCraft) psionic effects to ANY audio file. Use as a post-processing layer for TTS or user recordings.
为任意音频文件添加《星际争霸》神族风格灵能特效,可用作TTS或用户录音的后处理层。
vemec
效率工具 clawhub v1.1.1 1 版本 99908.4 Key: 无需
★ 3
Stars
📥 2,121
下载
💾 82
安装
1
版本
#latest#protoss#starcraft#voice effect

概述

Protoss Voice Effect

Applies a "Khala" psionic transformation chain to audio files using the V9 "Massive Void" engine.

Modular Design: This skill does NOT generate speech. It transforms existing audio.

Usage

Run the script on any input audio file (wav, mp3, ogg, etc):

python3 skills/protoss-voice/protoss_fx.py <path_to_audio_file>

Output:

Creates a new file with suffix _psionic.wav in the same directory.

Agent Protocol & Behavior

When acting as a Protoss persona (e.g., Selendis, Artanis, Zeratul, etc), the agent should:

  1. Generate/Record Base Audio:
    • Use kokoro-tts (or any other TTS skill) to generate the raw speech.
    • OR accept a user-provided recording.
  2. Process (The "Black Box"):
    • Execute protoss_fx.py on the raw file.
    • Do not narrate this step unless debugging.
  3. Deliver Final Artifact:
    • Send the processed file (_psionic) using the message tool.
    • Clean up raw/intermediate files silently if they are temporary.

Integration Example (Kokoro)

# 1. Generate (Raw)
python3 skills/kokoro-tts/speak.py "En Taro Adun." -o raw.wav -v ef_dora

# 2. Transform (Psionic)
python3 skills/protoss-voice/protoss_fx.py raw.wav
# Output: raw_psionic.wav

# 3. Optimize for Transport (Telegram OGG)
ffmpeg -i raw_psionic.wav -c:a libopus -b:a 64k -vbr on final.ogg -y

# 4. Send
message(action="send", media="final.ogg", asVoice=true)

Requirements

Requires ffmpeg and sox (Sound eXchange).

brew install ffmpeg sox

版本历史

共 1 个版本

  • v1.1.1 当前
    2026-03-28 15:32 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 115,018
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 446 📥 226,531
developer-tools

SmartRoute - Google Routes Calculator

vemec
利用 Google Routes API 计算位置之间感知交通路况的路线、行程时间和距离。当用户询问“前往X的交通情况”、“到达Y需要多久”、“到Z的最佳路线”或“驾驶时间”时使用。返回包含时长、距离及 Google 地图导航直链的 JSO
★ 2 📥 1,885