Agent skill · Content & Marketing

whisper-transcription

Transcribe audio and video files to text using OpenAI Whisper. Use when: converting podcasts to blog posts; creating video subtitles; extracting quotes from interviews; repurposing video content to text; building searchable audio archives

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill whisper-transcription-guia-matthieu-clawfu-skills --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0.0
Declared author: ClawFu
Path: skills/ai-ml/whisper-transcription-guia-matthieu-clawfu-skills/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Whisper Transcription > Transcribe any audio or video to text using OpenAI's Whisper model - the same technology powering ChatGPT voice features. ## When to Use This Skill - **Podcast repurposing** - Convert episodes to blog posts, show notes, social snippets - **Video subtitles** - Generate SRT/VTT files for YouTube, social media - **Interview extraction** - Pull quotes and insights from recorded calls - **Content audit** - Make audio/video libraries searchable - **Translation** - Transcribe and translate foreign language content ## What Claude Does vs What You Decide | Claude Does | You Decide | |-------------|------------| | Structures production workflow | Final creative direction | | Suggests technical approaches | Equipment and tool choices | | Creates templates and checklists | Quality standards | | Identifies best practices | Brand/voice decisions | | Generates script outlines | Final script approval | ## Dependencies ```bash pip install openai-whisper torch ffmpeg-python click # Also requires ffmpeg installed on system # macOS: brew install ffmpeg # Ubuntu: sudo apt install ffmpeg ``` ## Commands ### Transcribe Single File ```bash python scripts/main.py transcribe audio.

What's inside
Steps it walks through
  1. When to Use This Skill
  2. What Claude Does vs What You Decide
  3. Dependencies
  4. Commands
  5. Transcribe Single File
  6. Batch Transcription
  7. Transcribe + Translate
  8. Extract Timestamps
  9. Examples
  10. Example 1: Podcast to Blog Post
  11. Example 2: YouTube Subtitles
  12. Example 3: Batch Process Interview Library
  13. Model Selection Guide
  14. Output Formats
Ships with 1 file
  • metadata.json
Commands it runs
pip install openai-whisper torch ffmpeg-python click
Also requires ffmpeg installed on system
python scripts/main.py transcribe audio.mp3 --model medium --output transcript.txt
python scripts/main.py transcribe video.mp4 --format srt --output subtitles.srt
python scripts/main.py batch ./recordings/ --format txt --output ./transcripts/
python scripts/main.py translate foreign-audio.mp3 --to en
python scripts/main.py timestamps podcast.mp3 --format json
Transcribe 1-hour podcast
python scripts/main.py transcribe episode-42.mp3 --model medium
Processing time: ~5 min for 1 hour audio on M1 Mac
More from claude-skill-registry
All skills →
About this skill
What does the whisper-transcription skill do?

Transcribe audio and video files to text using OpenAI Whisper. Use when: converting podcasts to blog posts; creating video subtitles; extracting quotes from interviews; repurposing video content to text; building searchable audio archives

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill whisper-transcription-guia-matthieu-clawfu-skills --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going