What problem does it solve?
This Skill helps you download videos from many sites reliably without manually figuring out per-site options, so you can quickly build your offline library.
Core Features & Use Cases
- Install and set up yt-dlp + ffmpeg so downloads can merge separate video/audio streams.
- Format selection and optimization to choose resolutions and combine streams (e.g., bestvideo+bestaudio).
- Playlists, channels, subtitles, and authentication using cookies and archive files to avoid re-downloading.
- Post-processing and output organization with FFmpeg options, metadata embedding, and output templates for tidy folders.
Use case: You want to archive a full YouTube playlist in 1080p, embed subtitles (English), keep files organized by channel/playlist, and re-run it later without downloading everything again.
Quick Start
Use the video-downloader skill to download a YouTube playlist in 1080p while merging best streams and embedding subtitles by running: yt-dlp -f "bestvideo[height<=1080]+bestaudio/best[height<=1080]" --merge-output-format mp4 --write-subs --sub-langs en --embed-subs "PASTE_PLAYLIST_URL_HERE".