Video Transcribe logo

Video Transcribe

CommunityPopular
wendy7756
video-transcribe

Transcribe and summarize a video or podcast from a URL (YouTube, TikTok, Bilibili, Apple Podcasts, SoundCloud, 30+ platforms) or from a local media/.txt file. Use when the user shares a video/podcast link or media file and wants a transcript, summary, translation, or the original video downloaded. Triggers on "transcribe", "summarize this video", "what does this video say", "get the transcript", "转录", "视频摘要".

Overview

Publisherwendy7756
RepositoryAI-Video-Transcriber
Skill namevideo-transcribe
Stars
3.3K
Forks
420
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by wendy7756 on GitHub. Read the source before you install it.

Installation

Install the Video Transcribe AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/wendy7756/AI-Video-Transcriber.git /tmp/AI-Video-Transcriber
mkdir -p .claude/skills
cp -r /tmp/AI-Video-Transcriber/skills/video-transcribe .claude/skills/video-transcribe
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Video Transcribe in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Video Transcribe on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Video Transcribe is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Video Transcribe

Runs this repo's pipeline headlessly: platform subtitles when available (seconds), local Whisper as fallback, then optimize -> translate -> summarize.

Before running

The command must be run from the AI Video Transcriber repository root and needs the project virtualenv plus ffmpeg. Verify once per session:

bash
ls venv/bin/python && command -v ffmpeg
  • No venv: run ./install.sh, or python3 -m venv venv && venv/bin/pip install -r requirements.txt.
  • No ffmpeg: install it first with brew install ffmpeg on macOS or sudo apt install ffmpeg on Debian/Ubuntu. Do not proceed without it; audio extraction will fail.

Run it

bash
venv/bin/python transcribe.py "<URL or file path>" --json

Always pass --json: it puts machine-readable output on stdout and keeps progress chatter on stderr. Parse the JSON rather than scraping log lines.

Useful flags:

FlagWhen to use
-l, --summary-language <code>Summary language: en, zh, es, fr, de, it, pt, ru, ja, ko, ar. Default en
--no-llmNo API key is available, or the user only wants the raw transcript. Skips optimize/translate/summarize
--no-videoThe user does not want the source video kept
--whisper-model smallAccuracy matters more than speed. tiny to large, default base
-o <dir>Write the Markdown somewhere other than ./temp

The LLM steps need an OpenAI-compatible key via OPENAI_API_KEY and optionally OPENAI_BASE_URL. Without one the pipeline still transcribes but falls back to basic formatting; prefer --no-llm when the user only needs the transcript.

Provider settings:

bash
export OPENAI_API_KEY="your_api_key_here"
export OPENAI_BASE_URL="https://openrouter.ai/api/v1"
export OPENAI_TRANSLATION_MODEL="gpt-4o"  # optional

For a one-off run, transcribe.py also accepts --api-key, --base-url, and --model. Prefer environment variables when possible so API keys are not written to shell history.

Reading the result

json
{
  "title": "...",
  "no_speech": false,
  "detected_language": "en",
  "files": { "raw": "...", "transcript": "...", "summary": "...", "translation": "..." },
  "media": { "path": "...", "kind": "video", "size_bytes": 2243691 }
}

Read the transcript and summary paths to get the content. translation is present only when the source language differs from the summary language.

Critical: no_speech

When "no_speech": true the source contains no speech. There is no transcript, summary, or translation. The pipeline deliberately skips the LLM so that nothing gets invented.

If you see this, tell the user the video has no speech. Do not guess at the content, infer it from the title, or describe what the video probably says.

Failure modes

  • Exit 2: bad input, such as a missing file, unsupported extension, or empty text file. Report the message and fix the argument.
  • Exit 1: download/transcode failure, usually an unreachable URL, region-blocked/private video, or missing ffmpeg. Report the actual error.
  • First run downloads Whisper weights, so it can look stalled for a minute.
  • Long videos are slow in Whisper mode. Warn the user before starting if no platform subtitles are available.

Frequently asked questions

What does the Video Transcribe AI skill do?

Transcribe and summarize a video or podcast from a URL (YouTube, TikTok, Bilibili, Apple Podcasts, SoundCloud, 30+ platforms) or from a local media/.txt file. Use when the user shares a video/podcast link or media file and wants a transcript, summary, translation, or the original video downloaded. Triggers on "transcribe", "summarize this video", "what does this video say", "get the transcript", "转录", "视频摘要".

Why use Video Transcribe on TypingMind?

Because you install it once and use it with any model. Video Transcribe is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Video Transcribe in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/wendy7756/AI-Video-Transcriber/tree/main/skills/video-transcribe. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Video Transcribe?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Video Transcribe?

As many as you like. As long as a model supports skills, you can use Video Transcribe with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Video Transcribe AI skill free?

Yes. It is published on GitHub by wendy7756 under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇