Loading...
Loading...
Download videos from 1000+ websites (YouTube, Bilibili, Twitter/X, TikTok, Vimeo, Instagram, Twitch, etc.) using yt-dlp. Use this skill whenever a user shares a video URL, asks to save or download a video, wants to extract audio from an online video, needs a specific quality like 1080p or 4K, or mentions downloading a playlist. Also trigger on "下载视频", "保存视频", "提取音频", or any URL from a supported video platform.
npx skill4agent add feiskyer/video-skills download-videowhich yt-dlp && yt-dlp --version
which ffmpeg# macOS
brew install yt-dlp ffmpeg
# Cross-platform
pip install yt-dlppython3 scripts/download.py "VIDEO_URL"~/Downloads/Videos/python3 scripts/download.py "URL" -f 1080 # Max 1080p
python3 scripts/download.py "URL" -a # Audio only (MP3)
python3 scripts/download.py "URL" -F # List formats
python3 scripts/download.py "URL" --subs # With subtitles
python3 scripts/download.py "URL" -o ~/Desktop # Custom output dir
python3 scripts/download.py "URL" --cookies chrome # Use browser cookies# Download playlist
yt-dlp -P ~/Downloads/Videos "PLAYLIST_URL"
# Custom filename template
yt-dlp -o "%(uploader)s - %(title)s.%(ext)s" "VIDEO_URL"
# Download with subtitles in specific languages
yt-dlp --write-subs --sub-lang zh,en -P ~/Downloads/Videos "VIDEO_URL"| Symptom | Fix |
|---|---|
| "Sign in required" or age-restricted | Add |
| Only low quality available | Update yt-dlp ( |
| Slow downloads | Try |
| Network errors (behind firewall) | Use |