← スキル一覧に戻る

youtube-transcript-fetcher
by ljchg12-hue
Claude Code CLI configuration with multi-AI orchestration and ABSOLUTE RULES enforcement
⭐ 0🍴 0📅 2026年1月16日
SKILL.md
name: youtube-transcript-fetcher description: Extract and download YouTube video transcripts and subtitles for content analysis and accessibility
YouTube Transcript Fetcher Skill
Extract transcripts and captions from YouTube videos.
When to Use
- Content analysis
- Translation
- Accessibility
- Research documentation
Core Capabilities
- Auto-generated transcript extraction
- Manual caption download
- Multiple language support
- Timestamp preservation
- Format conversion (SRT, TXT, JSON)
Tools
# youtube-transcript-api (Python)
pip install youtube-transcript-api
youtube_transcript_api VIDEO_ID
# yt-dlp with subtitles
yt-dlp --write-auto-sub --skip-download VIDEO_URL
# youtube-dl
youtube-dl --write-sub --sub-lang en --skip-download VIDEO_URL
Python Example
from youtube_transcript_api import YouTubeTranscriptApi
video_id = "dQw4w9WgXcQ"
transcript = YouTubeTranscriptApi.get_transcript(video_id)
for entry in transcript:
print(f"[{entry['start']:.2f}s] {entry['text']}")
Best Practices
- Check caption availability first
- Prefer manual captions over auto-generated
- Preserve timestamps for reference
- Verify accuracy for critical content
- Respect copyright
Resources
- youtube-transcript-api: https://github.com/jdepoix/youtube-transcript-api
- yt-dlp: https://github.com/yt-dlp/yt-dlp
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です