aboutsummaryrefslogtreecommitdiff
path: root/home/programs/media/yt-dlp.nix
blob: 855c052737a3846200d06b659309b15219c0c8fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ ... }:
{
  programs.yt-dlp = {
    enable = true;
    settings = {
      mtime = false;
      merge-output-format = "mkv";
      restrict-filenames = true;
      embed-thumbnail = true;
      embed-metadata = true;
      embed-chapters = true;
      sponsorblock-mark = "sponsor";
      output = "~/Movies/%(uploader)s/%(upload_date>%Y-%m-%d)s-%(title)s-%(id)s.%(ext)s";
      write-sub = true;
      write-auto-sub = true;
      sub-langs = "en.\\*";
      format = "bestvideo*[format_id!*=-sr]+bestaudio/best[format_id!*=-sr]";
    };
  };
}