원클릭으로
speech-to-text
Transcribe audio files to text using OpenAI Whisper CLI — supports voice messages, audio recordings, and multiple languages.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Transcribe audio files to text using OpenAI Whisper CLI — supports voice messages, audio recordings, and multiple languages.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Guide for authoring Better-Claw skill sets and skills — directory structure, SKILL.md/SKILLSET.md format, frontmatter fields, best practices, and testing methods.
TypeScript development best practices and patterns
Python machine learning with scikit-learn, pandas, and numpy
Statistical analysis with R and tidyverse
A standalone skill without a parent skill set
macOS screen capture and GUI automation via Peekaboo MCP — take screenshots, read screen content, and interact with desktop applications.
| name | speech-to-text |
| description | Transcribe audio files to text using OpenAI Whisper CLI — supports voice messages, audio recordings, and multiple languages. |
| user-invocable | false |
You can transcribe audio files to text using the OpenAI Whisper CLI tool.
The following must be installed on the system:
pip install openai-whisperbrew install ffmpeg (macOS) or apt install ffmpeg (Linux)Verify installation: whisper --help
To transcribe an audio file:
whisper <audio_file> --model base --output_format txt --output_dir /tmp
The transcript will be saved as a .txt file in the output directory.
| Option | Description | Values |
|---|---|---|
--model | Model size (larger = more accurate but slower) | tiny, base, small, medium, large |
--language | Source language (auto-detect if omitted) | zh, en, ja, ko, etc. |
--output_format | Output format | txt, srt, vtt, json |
--output_dir | Directory for output files | Any writable path |
When you receive a message containing an audio file path (e.g., [User sent a voice message: /path/to/audio.ogg]), use this skill to transcribe it:
.txt file.If whisper is not installed, inform the user that speech-to-text requires installing openai-whisper and ffmpeg.