Transcribes audio files to text using whisper-cpp (local, offline). Use when converting speech to text, transcribing podcasts, lectures, meetings, or any audio content.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add knoopx/pi --skill transcribe-audio --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Transcribe Audio?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/knoopx-transcribe-audio)More formats (shields.io, HTML) on the badges page.
---
name: transcribe-audio
description: "Transcribes audio files to text using whisper-cpp (local, offline). Use when converting speech to text, transcribing podcasts, lectures, meetings, or any audio content."
token_cost: 75
keywords:
[
"transcribe",
"audio",
"speech",
"text",
"podcast",
"lecture",
"meeting",
"whisper",
]
---
# transcribe-audio
Transcribes audio files to text using whisper-cpp locally and offline. No API keys or network required.
## Basic Transcription
```bash
transcribe-audio input.mp3 # Transcribe with default settings
transcribe-audio input.wav --language en # Specify language
transcribe-audio input.flac --model medium # Use a larger model for better accuracy
```
## Options
- `--language <code>` — specify source language (auto-detect by default)
- `--model <size>` — choose model size: `tiny`, `base`, `small`, `medium`, `large`
- `--output <format>` — output format: `txt`, `srt`, `vtt` (default: `txt`)
- `--timestamp` — include timestamps in output
## Supported Formats
MP3, WAV, FLAC, OGG, M4A, and any format whisper-cpp supports. For best results, use uncompressed WAV or FLAC.
## Tips
- Larger models (`medium`, `large`) are more accurate but slower
- Auto-detect language works well for common languages; specify explicitly for mixed-language audio
- Output with timestamps is useful for subtitles: `transcribe-audio file.mp4 --output vtt`
- All processing is local — no data leaves your machine
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!