← 返回
沟通协作 中文

Voice

Voice communication via Telegram. Automatically transcribes incoming voice messages using faster-whisper and replies with TTS voice. Use for all voice-relate...
通过Telegram实现语音通信,自动转录收到的语音并以TTS回复,适用于所有语音相关场景。
polityang
沟通协作 clawhub v1.0.0 1 版本 99917.5 Key: 无需
★ 0
Stars
📥 1,211
下载
💾 6
安装
1
版本
#latest

概述

Voice Communication

This skill enables voice communication on Telegram:

  1. Receive: Transcribe voice messages using faster-whisper
  2. Reply: Send voice replies using TTS

Incoming Voice (Automatic)

When receiving voice messages (.ogg files), use faster-whisper to transcribe:

from faster_whisper import WhisperModel

model = WhisperModel('base', device='cpu', compute_type='int8')
segments, info = model.transcribe('<file_path>', language='zh')
result = ''.join([s.text for s in segments])

Outgoing Voice (TTS)

Use the tts tool to send voice replies:

{
  "action": "send",
  "channel": "telegram", 
  "message": "<text>",
  "asVoice": true
}

Or use the tts tool directly:

{
  "channel": "telegram",
  "text": "<text to speak>"
}

Language

  • Input: Auto-detect or specify language (zh for Chinese)
  • Output: Match user's language preference

Requirements

  • faster-whisper: pip install faster-whisper
  • TTS already configured in OpenClaw

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 19:03 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Telegram Voice Bot

polityang
使用 Whisper 转录语音消息并通过微软 Edge 语音合成以中文回复的 Telegram 机器人。
★ 0 📥 643
communication-collaboration

Slack

steipete
当需要通过 slack 工具从 Clawdbot 控制 Slack 时使用,包括在频道或私信中回复消息或置顶/取消置顶项目。
★ 157 📥 47,671
communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 113 📥 52,392