youtube_skill
- Shell
31
GitHub Stars
1
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill steveclarke/dotfiles --skill youtube- SKILL.md1.7 KB
Overview
This skill lets you download and process content from YouTube videos and playlists, including transcripts, captions, subtitles, audio (MP3), and full playlists. It provides clear workflows and shell commands to extract text and build a local music library with tagging. Use it when you supply a YouTube URL or request downloads or transcriptions.
How this skill works
The skill chooses one of two workflows based on your request: transcript extraction or audio/MP3 download and tagging. For transcripts it uses yt-dlp to list and download subtitles, converts VTT to plain text, and falls back to Whisper if needed. For audio it uses a playlist-aware downloader to fetch audio, then tags MP3 files with eyeD3 and organizes them into a library structure.
When to use it
- You provide a YouTube URL and want the video transcript, captions, or subtitles.
- You need automated conversion of VTT/auto-generated subtitles into searchable text.
- You want to download audio from a single video or an entire playlist as MP3s.
- You want MP3 files tagged and organized into a local music library.
- You want a quick shell-based workflow for batch processing videos or playlists.
Best practices
- Always check available subtitles first (yt-dlp --list-subs) to prefer official captions over auto-generated ones.
- For transcripts prefer downloaded subtitle files and convert VTT to plain text before using speech-to-text fallbacks.
- Use playlists for bulk downloads and verify playlist info before running long jobs.
- Keep yt-dlp and eyeD3 up to date to avoid format or tagging issues.
- Respect copyright and terms of service: download only content you have rights to or permission to use.
Example use cases
- Extract subtitles from a lecture video to produce searchable notes and quotes.
- Download a podcast episode from YouTube and convert it to MP3 with proper artist/title tags.
- Bulk download an artist’s playlist to build a tagged, local music library.
- Convert auto-generated captions to plain text, then run a local speech model for improved transcription accuracy.
- Check subtitle availability before deciding whether to run an automatic speech-to-text fallback.
FAQ
Install yt-dlp for downloading and eyeD3 for MP3 tagging. These can be installed via package managers like Homebrew.
What if no subtitles exist?
The workflow falls back to speech-to-text (e.g., Whisper) to generate a transcript when subtitles are unavailable or insufficient.