Media Transcriber
Transcribe and summarize video, audio, and social media content from links or files.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/omniget-transcribe-tonhowtf/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
This skill should be used when the user shares a video, audio, podcast or social-post URL or a local media file and asks "what does this video say", "transcribe this", "summarize this video", "get the transcript", "what is this reel about", "research this post", "pull the caption", "turn this talk into notes", "quote the part where", "translate what they say", or wants to analyze spoken content from a link. Covers YouTube, TikTok, Instagram, X/Twitter, Reddit, Vimeo, Twitch, Bilibili, Threads and any local .mp4/.mp3/.wav/.m4a.
What this skill does
Transcribing and researching media
Turn a link or file into text with ${CLAUDE_PLUGIN_ROOT}/scripts/, then read the
transcript and answer. Claude cannot hear audio, so a speech-to-text step always runs first.
Each script prints one JSON line on success; progress goes to stderr.
Pipeline
- Describe the source (URL only, no download):
Returns
bash "${CLAUDE_PLUGIN_ROOT}/scripts/research.sh" "<url>"title,platform,uploader,duration,has_captions, andcaption(the post text or description) when the platform provides one. Skip this step for local files. - Get the transcript:
Returns
bash "${CLAUDE_PLUGIN_ROOT}/scripts/transcribe.sh" "<url-or-file>" [--backend auto|captions|local|mlx|gemini|openai] [--model NAME] [--lang xx] [--out DIR]transcript(Markdown with[mm:ss]markers),srtwhen timestamps exist,backend,model,duration,chars. Files land in~/Downloads/omniget/transcriptsunless--outorOMNIGET_DIRsays otherwise. - Read the
.mdfile and do what was asked: summarize, extract key points, quote with timestamps, translate, or write a research note that combines the caption and the transcript. Cite moments as[mm:ss]. Do not paste the whole transcript back unless asked.
Backend ladder (--backend auto)
| Order | Backend | Needs | Cost | Notes |
|---|---|---|---|---|
| 1 | captions | platform subtitles | free, seconds | tried first for every URL; auto-captions are rough but usable |
| 2 | local | whisper-cli + a ggml model | free, private | CPU/Metal; large-v3-turbo-q5_0 is the default model choice |
| 3 | mlx | mlx_whisper (Apple Silicon) | free, private | faster than whisper-cli on M-series Macs |
| 4 | gemini | GEMINI_API_KEY | cents per hour | audio-native; good for long recordings |
| 5 | openai | OPENAI_API_KEY | about $0.006 per minute | whisper-1 returns timestamps; --model gpt-4o-transcribe is more accurate but text-only |
Choose deliberately when the user states a preference:
- "most accurate" with an OpenAI key:
--backend openai --model gpt-4o-transcribe. - "free" or "offline" or "private":
--backend local(ormlxon a Mac). - Known language: pass
--lang en(orpt,es, ...) to every backend; it speeds up and sharpens results. - Recording longer than two hours: say so and confirm before a cloud backend runs.
Keys are read from the environment or ~/.config/ai-keys.env. Never print them. To add one, the user runs bash "${CLAUDE_PLUGIN_ROOT}/scripts/keys.sh" set in their own terminal (hidden input); never ask them to paste a key here. keys.sh check (or doctor.sh --check-keys) reports which keys work.
Exit codes and what to do
| Exit | Meaning | Action |
|---|---|---|
| 3 | --backend captions and the platform has none | rerun with --backend auto |
| 4 | no local engine and no key | offer setup.sh (installs tools, confirm once) and tell the user to add a key with keys.sh set in their own terminal; get-model.sh large-v3-turbo-q5_0 fetches a local model (547 MB) |
| 1 | tool missing or download failed | read the -> hint the script printed (rate-limit / login / DRM); run doctor.sh, or setup.sh --update if a site broke; for login errors see the omniget-fetch error table |
Rules
- Never start an install or a model download without the user's explicit yes.
- Summaries state which backend produced the transcript when accuracy matters (auto-captions vs. Whisper).
- Keep
.srtand.mdnext to each other; the user may open the SRT in OmniGet's Subtitle Workshop.
Related skills
Skill Builder & Optimizer
anthropics
Create, edit, and optimize Claude skills with performance testing and benchmarking.
Org Change Management
alirezarezvani
Guide teams through organizational changes using the ADKAR model and communication strategies.
Audio/Video Transcription
daymade
Transcribe audio and video files to text with fast local or remote processing.
Claude Export Conversation Fixer
daymade
Repair broken line wrapping in Claude Code exported conversation files.