Files
MarkdownNotes/youtube-dl Tricks.md
2023-04-26 15:31:59 -04:00

1.1 KiB

youtube-dl Tricks

youtube-dl is a free and open source download manager for video and audio from YouTube and over 1,000 other video hosting websites.

yt-dlp

yt-dlp is a youtube-dl fork based on the now inactive youtube-dlc. The main focus of this project is adding new features and patches while also keeping up to date with the original project

Install

sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp && sudo chmod a+rx /usr/local/bin/yt-dlp

Extract audio from YouTube video with youtube-dl

youtube-dl --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" <URL>

Download Album from YouTube Music

yt-dlp --extract-audio --audio-format mp3 -o "%(playlist_index)s - %(title)s.%(ext)s" <URL of Playlist>

Download all parts of a multistream

yt-dlp -S "res:480" <url>

Reference