audio-to-text
Transcribe audio files to text with automatic language detection (supports Chinese and English)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Transcribe audio files to text with automatic language detection (supports Chinese and English)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Download podcast episodes from 小宇宙 (Xiaoyuzhou.fm) and Apple Podcasts
Convert PDF files to plain text using PyMuPDF4LLM
Download audio from YouTube and Twitter/X links
| name | audio-to-text |
| description | Transcribe audio files to text with automatic language detection (supports Chinese and English) |
| metadata | {"openclaw":{"emoji":"📝","requires":{"bins":["python3","ffmpeg"],"python_packages":["mlx-whisper"]},"install":[{"id":"pip-mlx-whisper","kind":"pip","command":"pip install mlx-whisper","label":"Install mlx-whisper"},{"id":"brew-ffmpeg","kind":"brew","formula":"ffmpeg","bins":["ffmpeg"],"label":"Install ffmpeg"}]}} |
Transcribe audio files to text with automatic language detection.
# Transcribe to default output (same directory as input)
python {baseDir}/scripts/transcribe.py "<audio_file>"
# Transcribe with custom output path
python {baseDir}/scripts/transcribe.py "<audio_file>" -o output.txt
# Use specific model (default: small)
python {baseDir}/scripts/transcribe.py "<audio_file>" --model medium
--model: Model size (tiny, base, small, medium, large-v3). Default: small--chunk-minutes: Minutes per chunk for long audio. Default: 15--format: Output format (txt, srt, json). Default: txt--language: Force specific language (auto-detect if not specified)python {baseDir}/scripts/transcribe.py podcast.mp3
python {baseDir}/scripts/transcribe.py interview.wav -o transcript.txt --model medium
python {baseDir}/scripts/transcribe.py lecture.mp3 --format srt --chunk-minutes 10
Plain text with paragraphs.
SubRip subtitle format with timestamps.
{
"language": "zh",
"segments": [
{"start": 0.0, "end": 5.2, "text": "..."}
],
"text": "..."
}
Use a smaller model or increase chunk size.
The first run will download the model from Hugging Face (150MB-3GB depending on model size).
mlx-whisper is optimized for Apple Silicon and runs ~30% faster than other implementations on M-series chips.