From sundial-org-awesome-openclaw-skills-4
Fetches YouTube video transcripts using a Python script with VPN/proxy support for reliable access.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:youtube-transcriptThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch transcripts from YouTube videos and optionally summarize them.
Fetch transcripts from YouTube videos and optionally summarize them.
python3 scripts/fetch_transcript.py <video_id_or_url> [languages]
Examples:
python3 scripts/fetch_transcript.py dQw4w9WgXcQ
python3 scripts/fetch_transcript.py "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
python3 scripts/fetch_transcript.py dQw4w9WgXcQ "fr,en,de"
Output: JSON with video_id, title, author, full_text, and timestamped transcript array.
fetch_transcript.py with video ID or URLfull_text field as neededDefault priority: en, fr, de, es, it, pt, nl
Override with second argument: python3 scripts/fetch_transcript.py VIDEO_ID "ja,ko,zh"
See references/SETUP.md for:
npx claudepluginhub sundial-org/awesome-openclaw-skillsFetches and reads YouTube video transcripts for summarization, question answering, and content extraction. Requires yt-dlp and works with videos that have closed captions or auto-generated subtitles.
Fetches the transcript text for a given YouTube video URL using the youtube-to-docs process_video tool.
Extracts transcripts from YouTube videos (URL or video ID) with optional timestamps. Outputs clean text or timestamped format via a Python script.