Skip to content
Content
Skill

/mega-transcriber

**QUICK REFERENCE** - **Output folder**: `output/transcripts/` - **Transcribe script**: `.venv\Scripts\python.exe scripts/mega/transcribe.py` - **Supported formats**: mp4, mp3, wav, m4a, webm, mkv, flac, ogg, aac - **Prerequisites**: FFmpeg on PATH + `pip install openai-whisper

From plugin
10x-content-expert
1530 skills3 agents4 commands
Install
$ npx -y skills add OpenAnalystInc/10x-Content-Expert --skill mega-transcriber --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/mega-transcriber

Context preview

The summary Claude sees to decide when to auto-load this skill.

**QUICK REFERENCE** - **Output folder**: `output/transcripts/` - **Transcribe script**: `.venv\Scripts\python.exe scripts/mega/transcribe.py` - **Supported formats**: mp4, mp3, wav, m4a, webm, mkv, flac, ogg, aac - **Prerequisites**: FFmpeg on PATH + `pip install openai-whisper

SKILL.md

mega-transcriber.SKILL.md

MEGA Transcriber Skill (Local Whisper)

> **QUICK REFERENCE** > - **Output folder**: `output/transcripts/` > - **Transcribe script**: `.venv\Scripts\python.exe scripts/mega/transcribe.py` > - **Supported formats**: mp4, mp3, wav, m4a, webm, mkv, flac, ogg, aac > - **Prerequisites**: FFmpeg on PATH + `pip install openai-whisper torch` > - **File naming**: `YYYY-MM-DD_filename_transcript.txt` and `_transcript.json` > - **Python**: ALWAYS use `.venv\Scripts\python.exe` (never bare `python`)

Purpose

Transcribe audio and video files locally using OpenAI Whisper. Outputs plain text and timestamped JSON transcripts.

Trigger Phrases

  • "transcribe this video", "transcribe audio", "convert speech to text"
  • "transcribe my recording", "get transcript from video"
  • `/content transcribe`

Supported Formats

mp4, mp3, wav, m4a, webm, mkv, flac, ogg, aac

Prerequisites

  • FFmpeg installed and on PATH
  • Python packages: `openai-whisper`, `torch` (install via `pip install openai-whisper torch`)

3-Mode Workflow

PLAN Mode

1. Check whisper is available:

   python -c "import whisper; print('OK')"

2. If not installed → tell user: `pip install openai-whisper torch` 3. Check FFmpeg: `ffmpeg -version` 4. Identify input file(s) — single file or batch from a folder

CLARIFY Mode

  • Ask: Which file or folder to transcribe?
  • Ask: Which Whisper model? Options:
  • `tiny` — Fastest, least accurate (~1GB VRAM)
  • `base` — Good balance (default) (~1GB VRAM)
  • `small` — Better accuracy (~2GB VRAM)
  • `medium` — High accuracy (~5GB VRAM)
  • `large` — Best accuracy (~10GB VRAM)
  • Ask: Language? (default: auto-detect)
  • Ask: Output format? (default: both .txt and .json)

IMPLEMENT Mode

Run the transcription script:

python scripts/mega/transcribe.py --input "path/to/file.mp4" --model base --output references/transcripts/auto-transcribed/

For batch:

python scripts/mega/transcribe.py --input "path/to/folder/" --model base --output references/transcripts/auto-transcribed/ --batch

Output

  • `.txt` — Plain text transcript
  • `.json` — Timestamped segments with start/end times
  • Default location: `references/transcripts/auto-transcribed/`
  • Alternative: `output/transcripts/`

Notes

  • First run downloads the model (~140MB for base, ~2.9GB for large)
  • GPU (CUDA) used automatically if available, falls back to CPU
  • CPU transcription is slower but works on any machine
Read more
Ships with10x-content-expert

A comprehensive Claude Code skills plugin for AI-powered content creation. Creates emails, social media content, presentations, blogs, and more - all aligned with your brand voice and informed by your reference materials.

Get the whole plugin

Other skills on 10x-content-expert.