youtube dl download full mp4 videos playlist code example

Example 1: downloading youtube playlists using youtube-dl in highest quality

youtube-dl -f best 'http://www.youtube.com/watch?v=P9pzm5b6FFY'

Example 2: youtube dl text tracked playlist download

# Download playlist as mp3, tracking videos which are downloaded:
youtube-dl --download-archive downloaded.txt --no-post-overwrites -ciwx --audio-format mp3 -o "%(title)s.%(ext)s" <url>

# Download playlist as mp4 at highest quality, embedding metadata, thumbnail, subs, tracking videos which are downloaded
youtube-dl --download-archive downloaded.txt --no-post-overwrites -ciw -f bestvideo --merge-output-format mp4 --write-auto-sub --embed-thumbnail --embed-subs --add-metadata -o "%(title)s.%(ext)s" <url>

Tags:

Misc Example