Download videos from 1800+ platforms and generate AI summaries with complete resource packages
npx claudepluginhub liang121/video-summarizerDownload videos from 1800+ platforms and generate AI summaries with complete resource packages
Share bugs, ideas, or general feedback.
A Claude Code skill that downloads videos from YouTube, Bilibili, Twitter/X, TikTok and 1800+ platforms, then generates AI-powered summaries with transcripts.
Note: This is a skill for Claude Code CLI. Not affiliated with Anthropic.
# Add marketplace and install
/plugin marketplace add liang121/video-summarizer
/plugin install video-summarizer@video-summarizer
# Clone repository
git clone https://github.com/liang121/video-summarizer.git ~/.claude/plugins/video-summarizer
# Add plugin in Claude Code
/plugin add ~/.claude/plugins/video-summarizer
Quick Usage:
/video-summarizer <video-url>
Or use natural language:
Summarize this video: <video-url>
Download this video: https://www.bilibili.com/video/BVxxxxx
The skill will automatically:
/video-summarizer <video-url>
Examples:
/video-summarizer https://www.youtube.com/watch?v=xxxxx
/video-summarizer https://www.bilibili.com/video/BVxxxxx
/video-summarizer https://twitter.com/user/status/xxxxx
The skill also activates automatically when you say:
Summarize this video: <video-url>
All files are saved to ./downloads/<video-title>/:
downloads/
└── Video_Title/
├── video.mp4 # Original video (up to 1080p)
├── audio.mp3 # Extracted audio
├── subtitle.vtt # Subtitles with timestamps
├── transcript.txt # Plain text transcript
└── summary.md # AI-generated summary
For videos without subtitles, the skill uses parallel_transcribe.py which:
python scripts/parallel_transcribe.py \
--input audio.mp3 \
--output-dir ./output \
--model small \
--language auto
| Option | Default | Description |
|---|---|---|
--model | small | tiny/base/small/medium/large-v3 |
--language | auto | Language code or 'auto' for detection |
--workers | CPU/2 | Number of parallel workers |
--min-segment | 60 | Min duration (sec) to enable splitting |
| Audio Length | Single Process | Parallel (4 workers) |
|---|---|---|
| 5 min | ~2-3 min | ~30-60 sec |
| 30 min | ~15-20 min | ~3-5 min |
| 1 hour | ~40+ min | ~8-12 min |
Based on small model, CPU processing
Edit reference/summary-prompt.md to customize the output. Available variables:
| Variable | Description |
|---|---|
{{TITLE}} | Video title |
{{PLATFORM}} | Platform name |
{{URL}} | Original URL |
{{DURATION}} | Video duration |
{{TRANSCRIPT}} | Full transcript |
| Model | Size | Speed | Quality |
|---|---|---|---|
| tiny | 39M | Fastest | Basic |
| base | 74M | Fast | Good |
| small | 244M | Medium | Recommended |
| medium | 769M | Slow | Better |
| large-v3 | 1.5G | Slowest | Best |
--cookies-from-browser chromeyt-dlp --cookies-from-browser chrome "URL"
If you prefer to install dependencies yourself instead of letting Claude Code handle it: