diff options
| author | Gregor Kleen <gkleen@yggdrasil.li> | 2026-09-27 12:37:52 +0200 |
|---|---|---|
| committer | Gregor Kleen <gkleen@yggdrasil.li> | 2026-09-27 12:37:52 +0200 |
| commit | badf7aba844967c5d13e01079c12df758715167a (patch) | |
| tree | 3c0872b667a64a82caf7bab3d2503c9f7a6444b9 /user-profiles | |
| parent | 74d97f767ac4d6f05ce95e388460a49c5190afc3 (diff) | |
| download | nixos-badf7aba844967c5d13e01079c12df758715167a.tar nixos-badf7aba844967c5d13e01079c12df758715167a.tar.gz nixos-badf7aba844967c5d13e01079c12df758715167a.tar.bz2 nixos-badf7aba844967c5d13e01079c12df758715167a.tar.xz nixos-badf7aba844967c5d13e01079c12df758715167a.zip | |
...flakes
Diffstat (limited to 'user-profiles')
| -rw-r--r-- | user-profiles/yt-dlp.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/user-profiles/yt-dlp.nix b/user-profiles/yt-dlp.nix index d611e5a4..cdb36c6d 100644 --- a/user-profiles/yt-dlp.nix +++ b/user-profiles/yt-dlp.nix | |||
| @@ -7,16 +7,16 @@ | |||
| 7 | cookies-from-browser = "firefox::none"; | 7 | cookies-from-browser = "firefox::none"; |
| 8 | mark-watched = true; | 8 | mark-watched = true; |
| 9 | format = lib.concatStringsSep "/" [ | 9 | format = lib.concatStringsSep "/" [ |
| 10 | "bestvideo*[width<=2560][height<=1440][fps<=60][vcodec!*=av01][width>=1920]+bestaudio" | 10 | "bestvideo*[width<=2880][height<=1920][fps<=120][width>=1920]+bestaudio" |
| 11 | "best[width<=2560][height<=1440][fps<=60][vcodec!*=av01][width>=1920]" | 11 | "best[width<=2880][height<=1920][fps<=120][width>=1920]" |
| 12 | "bestvideo*[vcodec!*=av01][width>=1920]+bestaudio" | 12 | "bestvideo*[width>=1920]+bestaudio" |
| 13 | "best[vcodec!*=av01][width>=1920]" | 13 | "best[width>=1920]" |
| 14 | "bestvideo*[width<=2560][height<=1440][fps<=60][vcodec!*=av01][height>=1080]+bestaudio" | 14 | "bestvideo*[width<=2880][height<=1920][fps<=120][height>=1080]+bestaudio" |
| 15 | "best[width<=2560][height<=1440][fps<=60][vcodec!*=av01][height>=1080]" | 15 | "best[width<=2880][height<=1920][fps<=120][height>=1080]" |
| 16 | "bestvideo*[vcodec!*=av01][height>=1080]+bestaudio" | 16 | "bestvideo*[height>=1080]+bestaudio" |
| 17 | "best[vcodec!*=av01][height>=1080]" | 17 | "best[height>=1080]" |
| 18 | "bestvideo*[width<=2560][height<=1440][fps<=60]+bestaudio" | 18 | "bestvideo*[width<=2880][height<=1920][fps<=120]+bestaudio" |
| 19 | "best[width<=2560][height<=1440][fps<=60]" | 19 | "best[width<=2880][height<=1920][fps<=120]" |
| 20 | "bestvideo*+bestaudio" | 20 | "bestvideo*+bestaudio" |
| 21 | "best" | 21 | "best" |
| 22 | ]; | 22 | ]; |
