User Tools

Site Tools


software:cli:bash:youtube-dl

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
software:cli:bash:youtube-dl [2022/05/10 06:45] – created warnaudsoftware:cli:bash:youtube-dl [2024/03/20 07:32] (current) – [Download complete channel in Playlists] warnaud
Line 1: Line 1:
 +====== YOUTUBE-DL ======
  
 +===== Install =====
 +MacOS:
 +<code bash>brew install youtube-dl</code>
 +===== Install ffmpeg =====
 +MacOS:
 +<code bash>brew install youtube-dl ffmpeg</code>
 +
 +
 +===== Download highest-res vid =====
 +<code bash>youtube-dl -f bestvideo+bestaudio ‘link’</code>
 +===== Download complete channel in Playlists =====
 +:!: you need ffmpeg :!:
 +<code bash> youtube-dl -f bestvideo+bestaudio -o '%(uploader)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s' https://www.youtube.com/@CHANNEL/playlists </code>