Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
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...
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...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Text-to-speech (TTS) tool that converts text to audio files (opus or mp3 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
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
# 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
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
Module automatically detects platform and prompts for ffmpeg installation if missing.
Opus: Better quality, smaller file size, suitable for voice calls MP3: Better compatibility, suitable for multimedia playback
Requires network connection for gTTS service Temporary files are automatically cleaned up Ensure output directory has write permissions
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.