| name | youtube-videos |
| description | Transcribe and analyze YouTube videos |
YouTube Videos
Use this skill to transcribe YouTube videos and ask questions about their content.
Tools
- yt-dlp — extract auto-generated subtitles
- llm (Gemini) — answer questions using the video and its metadata
Run yt-dlp --help once before first use.
Usage
Transcribe
yt-dlp -q --skip-download --write-auto-subs --sub-format vtt -o /tmp/$VIDEO_SLUG.vtt "VIDEO_URL"
Question
llm -m gemini-3-pro-preview -a "VIDEO_URL" "QUERY"
Workflow
- Start a new tmux session with the
llmcommand query to the video. - Generate the transcript with
yt-dlp. - Wait for the
llmresponse, meanwhile, read the transcription. - Get back to the user.