Command-line: youtube-dl

One of the archivists' best friends. At least you don't have to go to those shady YouTube conversion sites anymore when you have a complete list of other video sites you can download from.

Take note, I use yt-dlp. Any yt-dlp-specific options should be in the appropriate note.

For complete information, you can always inspect youtube-dl.1 manual page.

Synopsis

youtube-dl [OPTIONS...] [URLS...]

Options

Output formats

For --output option, there are a lot of things to consider naming your files. You may want to automate them yourself but youtube-dl has plenty of options from the get-go.

The following code is the sensible default output string.

%(playlist_index)02d-%(title)s.%(ext)s

A few of the usual stuff I use:

A lot of the things I have to do is to download multiple tracks from an album or playlist. Unfortunately, these are often different from one site to another.

Date ranges

The options --date and the like accept a certain format for date ranges in (now|today)[-|+][\\d+](day|week|month|year)s? or YYYYMMDD for absolute date.

ExampleDescription
now-2weeksFrom today to 2 weeks ago.
today+3daysFrom today to 3 days from now.
20000505Equivalent to 2000-05-05.

Examples

Here is an entryway into your newfound archiving habit. Enjoy! :)

Download the thumbnail and the audio of the video

Very simple. Very useful as most of the thumbnails can go to high resolution and if you need them for some reason.

youtube-dl --write-thumbnail --extract-audio https://www.youtube.com/watch?v=wy9VvdaLuSs

Download an entire album

Though, you should look at the supported sites if it supports downloading an album out of the URL. In this example, we have Bandcamp.

youtube-dl --output '%(track_number)02d-%(title)s.%(ext)s' --format bestaudio https://gametal.bandcamp.com/album/side-quests-vol-3

Specific video download requirements

In this example, I want to download a video with a width of 1080px and the best video and audio at 320Kbit/s. Oh, and the video should be in MP4 and the audio in Opus.

This is will only succeed if the format is available to download which you can do with --list-format.

youtube-dl --format 'bestvideo[width=1080,ext=mp4]+bestaudio[abr=320K,ext=opus]' https://www.youtube.com/watch?v=wy9VvdaLuSs

Check the first 50 videos at certain date range

In this example, I want to download videos from roam:David Revoy's YouTube channel that uploaded up to 2 months ago while checking only the first 50 videos. This is a useful template especially if the channel has a large selection of videos. Also useful if you're checking for videos daily to mitigate against potential bans from overusing it.

youtube-dl --playlist-end 50 --dateafter 'today-2weeks' "https://www.youtube.com/c/DavidRevoy"