AI Agent Hub
Back to skills
Video Transcript Method icon

Video Transcript Method

Data Analysis Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @efficient-technology/video-transcript-method according to https://skillhub.cn/install/skillhub.md.

About this skill

Problem

The core information in a video is usually carried by speech, but engineers still need to decide whether CC subtitles exist, download audio, run Whisper, and manually clean the transcript. Without a consistent workflow, the output can include filler, repeat segments, mechanical time-based cuts, or key points that drift from the original meaning.

How It Works

The skill treats video transcript extraction as a three-stage pipeline:
- Subtitle first: parse the URL, detect the platform and video ID, then check CC subtitles with yt-dlp --list-subs; if Chinese subtitles are available, use them directly instead of invoking speech recognition.
- Whisper fallback: when subtitles are missing, download the mp3 audio track and run Whisper to produce timestamped text; medium is the default, with FP32 fallback when FP16 is unavailable.
- Semantic cleanup: segment by content logic, add chapter titles and time ranges, extract a key-point table and exact quotes, and output .txt or .md.

Boundaries

It is useful for online videos supported by yt-dlp where speech carries the main information; danmaku are not CC subtitles, and login state or platform limits can affect subtitle access. Whisper accuracy depends on audio quality, and users should still verify completeness, timestamp alignment, and copyright.

Use Cases

  • Turn a Bilibili technical video into team notes with chapter titles and key points.
  • Convert YouTube meeting recordings into readable minutes using CC subtitles and exact quotes.
  • Extract a podcast into a shareable transcript with semantic segments and a WeChat-friendly txt file.
  • Build course review material with timestamps, a key-point table, and faithful core ideas.

Best For

  • Engineers turning technical videos into team documentation
  • Content editors preparing course material with exact quotes
  • Operations staff compiling podcasts and meetings into minutes
  • Analysts researching videos with structured transcripts