yt-dlp

CLI

Download videos and audio from YouTube and 1000+ other sites.

2 views

Installation

Homebrewbrew install yt-dlp
pippip install yt-dlp

Links

License

Unlicense

AI Agent Notes

Download videos/audio from YouTube and 1000+ sites with format selection

When to use

Downloading online video or audio for offline use

Examples
  • yt-dlp https://youtu.be/VIDEO_ID
  • yt-dlp -x --audio-format mp3 URL
  • yt-dlp -f 'bestvideo+bestaudio' URL

Proven Recipes

Download best quality video🟢 94% success
yt-dlp -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]' URL
Extract audio as MP3🟢 96% success
yt-dlp -x --audio-format mp3 --audio-quality 0 URL
⚠ Common failures (1)
  • ffmpeg not foundInstall ffmpeg: brew install ffmpeg
Download entire playlist🟢 91% success
yt-dlp --yes-playlist -o '%(playlist_index)s-%(title)s.%(ext)s' PLAYLIST_URL