← All skills
Tencent SkillHub Β· Developer Tools

Pywayne Tts

Text-to-speech conversion tool. Use when converting text to speech audio files (opus or mp3 format). Supports macOS native 'say' command and Google TTS (gTTS...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Text-to-speech conversion tool. Use when converting text to speech audio files (opus or mp3 format). Supports macOS native 'say' command and Google TTS (gTTS...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Pywayne TTS

Text-to-speech (TTS) tool that converts text to audio files (opus or mp3 format).

text_to_speech_output_opus - Convert text to Opus format

from pywayne.tts import text_to_speech_output_opus # Output: test.opus text_to_speech_output_opus("δ½ ε₯½οΌŒδΈ–η•Œ", "test.opus") Parameters: text - Text to convert opus_filename - Output .opus filename use_say - If True, use macOS 'say' command; otherwise use gTTS (default True) Behavior: On macOS, prefers native 'say' command when use_say=True On other platforms, uses Google TTS (gTTS) service Uses ffmpeg to convert audio to opus format (16kHz, mono channel) Automatically cleans up temporary files

text_to_speech_output_mp3 - Convert text to MP3 format

from pywayne.tts import text_to_speech_output_mp3 # Output: test.mp3 text_to_speech_output_mp3("δ½ ε₯½οΌŒδΈ–η•Œ", "test.mp3") Parameters: text - Text to convert mp3_filename - Output .mp3 filename use_say - If True, use macOS 'say' command; otherwise use gTTS (default True) Behavior: On macOS, prefers native 'say' command when use_say=True On other platforms, uses Google TTS (gTTS) service Uses ffmpeg to convert audio to mp3 format Automatically cleans up temporary files

Quick Start

# Convert text to Opus format (default: macOS uses 'say') text_to_speech_output_opus "δ½ ε₯½οΌŒδΈ–η•Œ" "test.opus" # Convert text to MP3 format text_to_speech_output_mp3 "δ½ ε₯½οΌŒδΈ–η•Œ" "test.mp3" # Force use gTTS instead of macOS 'say' text_to_speech_output_mp3 "δ½ ε₯½οΌŒδΈ–η•Œ" "test.mp3" use_say=False

Requirements

ffmpeg: Required for audio conversion macOS: brew install ffmpeg Windows: Download from https://ffmpeg.org and add to PATH Linux: sudo apt install ffmpeg or package manager gtts: Python library for Google TTS service

Platform Detection

Module automatically detects platform and prompts for ffmpeg installation if missing.

Audio Formats

Opus: Better quality, smaller file size, suitable for voice calls MP3: Better compatibility, suitable for multimedia playback

Notes

Requires network connection for gTTS service Temporary files are automatically cleaned up Ensure output directory has write permissions

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc