transcribe-video

transcribe-video is a skill for Claude Code from feiskyer/video-skills. It costs 135 tokens per session (802 once invoked), scanned A, original, MIT.

A tool for turning speech in a local video file into readable text or subtitle files. It checks for subtitles already inside the video before using speech recognition.

In plain words
What is it for?
Use it to transcribe videos, extract subtitles, or create a text version of what is said. It supports common formats such as MP4, MKV, MOV, AVI, and WebM.
Why use it?
It avoids manually typing spoken content and can use existing subtitles when available for a faster, more accurate result.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the video-skills plugin — 3 skills shipped together

Good fit Use it to transcribe videos, extract subtitles, or create a text version of what is said. It supports common formats such as MP4, MKV, MOV, AVI, and WebM.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/feiskyer/video-skills/transcribe-video
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add feiskyer/video-skills --skill transcribe-video
Clone the repo
git clone --depth 1 https://github.com/feiskyer/video-skills

Made for: Claude Code.

Or install video-skills, the plugin that ships this one along with the rest of its 3 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for transcribe-video

README.md
[![agentmods](https://agentmods.dev/badge/skills/feiskyer/video-skills/transcribe-video/github.svg)](https://agentmods.dev/skills/feiskyer/video-skills/transcribe-video)
Your own site
<a href="https://agentmods.dev/skills/feiskyer/video-skills/transcribe-video"><img src="https://agentmods.dev/badge/skills/feiskyer/video-skills/transcribe-video/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for transcribe-video

Your own site · 80×15
<a href="https://agentmods.dev/skills/feiskyer/video-skills/transcribe-video"><img src="https://agentmods.dev/badge/skills/feiskyer/video-skills/transcribe-video.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 135 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 802 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00135 $0.00802
Opus 5 $0.00068 $0.00401
Sonnet 5 $0.00027 $0.00160
Haiku 4.5 $0.00014 $0.00080

Measured 11d ago against content hash 5a4d0c72aaae, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

transcribe-video scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/transcribe.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/transcribe-video/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Transcribe Video

Extract transcript text from a local video file. The skill checks for embedded subtitles first (faster and more accurate), and only falls back to API-based speech recognition if none are found.

Step 1: Identify the video file

Confirm the video file path with the user. Supported formats: mp4, mkv, mov, avi, webm, and any format ffmpeg can handle.

Step 2: Check for embedded subtitles

ffprobe -v quiet -select_streams s -show_entries stream=index,codec_name:stream_tags=language,title -of json "<video_path>"
  • If subtitle streams exist → go to Step 3a (extract embedded subtitles)
  • If no subtitle streams → go to Step 3b (API transcription)

Step 3a: Extract embedded subtitles

If multiple subtitle tracks exist, prefer the one matching the video's primary language or ask the user which track to use.

# Extract as SRT (stream index 0 for first subtitle track; adjust if needed)
ffmpeg -i "<video_path>" -map 0:s:0 -c:s srt "<output_path>.srt" -y

After extraction, convert SRT to clean text:

  • Remove sequence numbers
  • Remove timestamp lines (lines matching \d{2}:\d{2}:\d{2})
  • Remove HTML-like tags (<i>, </i>, etc.)
  • Join remaining non-empty lines

Save the clean transcript to <video_name>.txt next to the video file. Done — skip Step 3b.

Step 3b: API-based transcription

Use the bundled transcription script. It reads credentials from ~/.transcribe_video.env.

Prerequisites check

  1. Verify the env file exists:

    test -f ~/.transcribe_video.env && echo "OK" || echo "MISSING"
    
  2. If MISSING, tell the user to create ~/.transcribe_video.env with:

    OPENAI_API_KEY=your-key-here
    # Optional Base URL:
    # OPENAI_API_BASE=https://<base-url>/v1/
    # Optional Model Name:
    # TRANSCRIBE_MODEL=gpt-4o-transcribe
    

    Wait for the user to confirm before proceeding.

  3. Verify dependencies:

    python3 -c "from openai import OpenAI; from dotenv import load_dotenv; print('OK')" 2>&1
    

    If missing: pip install openai python-dotenv

Read the full file on GitHub · 82 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 82 lines · 135 tokens per session scan A 5a4d0c72aaae

Subscribe to this mod's changes

transcribe-video is a skill published in the GitHub repository feiskyer/video-skills (14 stars, last pushed 4mo ago), licensed MIT. It adds 135 tokens to every session and 802 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

multimodal-llm

Vision, audio, video generation, and multimodal LLM integration patterns. Use when processing images, transcribing audio, generating speech, generating AI video (Kling v3, Sora 2, Veo 3.1 std/lite/fast, Runway Gen-4.5 via gen4turbo), or building multimodal AI pipelines.

yonatangross/orchestkit · 82 tokens

mk:multimodal

Process images, video, audio, PDFs with Gemini API. Generate images (Nano Banana 2), videos (Veo 3), speech (MiniMax TTS), music (MiniMax). Convert documents to Markdown. Multi-provider fallback (Gemini → MiniMax → OpenRouter). Activate when task references media files, asks to…

ngocsangyem/MeowKit · 91 tokens

minimax-cli

Nested swiss-knife reference for the MiniMax mmx CLI and the canonical MiniMax CLI procedure shipped with the TUI: install mmx-cli, discover the correct TUI-managed MiniMax preset/key slot without leaking secrets, match mainland vs international regions, and route image/video/music/TTS generation or one-shot shell…

Lingtai-AI/lingtai · 72 tokens

videoagent-audio-studio

Tired of juggling multiple audio APIs? This skill gives you one-command access to TTS, music generation, sound effects, and voice cloning. Use when you want to generate any audio without managing multiple API keys.

pexoai/pexo-skills · 50 tokens

tiktok-transcribe

A workflow that downloads TikTok videos, turns their audio into text with speech-recognition software, and saves the result as a Markdown file.

chubbyguan/chubbyskills · 30 tokens

bilibili-transcribe

A workflow that downloads videos from Bilibili, a Chinese video-sharing site, transcribes their speech, and saves the result as Markdown text. It accepts Bilibili links or BV video identifiers and tries available subtitles before audio transcription.

chubbyguan/chubbyskills · 42 tokens