Skip to main content

youtube-transcript-summarizer

Extract YouTube video transcripts and generate AI-powered summaries in any language. Converts videos to structured markdown documents with summaries, key points, and timelines.

설치로 이동

소스 정보

저장소
jykim/claude-obsidian-skills
최근 소스 활동
2026년 1월 29일 19:00
감지된 SKILL.md 언어
영어
스타
50
포크
10

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
3 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
youtube-transcript-summarizer
description
Extract YouTube video transcripts and generate AI-powered summaries in any language. Converts videos to structured markdown documents with summaries, key points, and timelines.
allowed-tools
["Read","Write","Bash","Glob"]
license
MIT
# YouTube Transcript Summarizer Extract transcripts from YouTube videos and generate AI-powered summaries. Supports any source language and can output summaries in your preferred language. ## Requirements ```bash pip install -r requirements.txt # or: pip install youtube-transcript-api anthropic ``` - **ANTHROPIC_API_KEY** env var required for AI summarization - **yt-dlp** (optional) for automatic video title fetching - Python 3.7+ Cost depends on transcript length and current Claude API pricing. ## Usage ```bash # Single video (default: English -> Korean) python youtube_transcript_summarizer.py "https://www.youtube.com/watch?v=VIDEO_ID" # Transcript only (no AI summary) python youtube_transcript_summarizer.py "VIDEO_URL" --no-summary # Japanese video with English summary python youtube_transcript_summarizer.py "VIDEO_URL" --source-lang ja --target-lang en # Auto-detect source language python youtube_transcript_summarizer.py "VIDEO_URL" --source-lang auto --target-lang fr # Batch processing python youtube_transcript_summarizer.py --batch "urls.txt" --output-dir "summaries" # Custom model and transcript limit python youtube_transcript_summarizer.py "VIDEO_URL" --model claude-sonnet-4-5-20250929 --max-transcript-chars 30000 ``` ## CLI Options | Option | Description | Default | |--------|-------------|---------| | `--title` | Custom video title | Auto-fetched via yt-dlp | | `--source-lang` | Source transcript language | `en` | | `--target-lang` | Output summary language | `ko` | | `--output-dir` | Output directory | `outputs/summaries` | | `--batch FILE` | Process multiple URLs from file | - | | `--timeline-interval` | Timeline interval (minutes) | `5` | | `--no-summary` | Skip AI summary | `false` | | `--api-key` | Claude API key | `ANTHROPIC_API_KEY` env | | `--model` | Claude model name | `claude-sonnet-4-5-20250929` | | `--max-transcript-chars` | Max chars sent to Claude | `15000` | ## Supported Languages `en`, `ko`, `ja`, `zh`, `es`, `fr`, `de`, `pt`, `ru`, `ar`, `hi`, `auto` ## Output Format Files are named `YYYY-MM-DD VideoTitle.md` with YAML frontmatter: ```yaml --- title: "Video Title" source: "https://www.youtube.com/watch?v=ID" created: YYYY-MM-DD HH:MM:SS tags: - youtube-transcript video_id: "ID" source_lang: "en" target_lang: "ko" --- ``` Sections: Summary, Key Points, Main Content, Timeline, Full Transcript. ## Claude Code Integration ``` Summarize this YouTube video: https://www.youtube.com/watch?v=VIDEO_ID ```
GitHub에서 보기