diff options
Diffstat (limited to 'user-profiles/yt-dlp.nix')
-rw-r--r-- | user-profiles/yt-dlp.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user-profiles/yt-dlp.nix b/user-profiles/yt-dlp.nix index 5c9858a6..f59a71b9 100644 --- a/user-profiles/yt-dlp.nix +++ b/user-profiles/yt-dlp.nix | |||
@@ -7,10 +7,10 @@ | |||
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]+bestaudio" | 10 | "bestvideo*[width<=2560][height<=1440][fps<=60][vcodec!*=av01][vcodec!*=avc1]+bestaudio" |
11 | "best[width<=2560][height<=1440][fps<=60]" | 11 | "best[width<=2560][height<=1440][fps<=60][vcodec!*=av01][vcodec!*=avc1]" |
12 | "bestvideo*+bestaudio" | 12 | "bestvideo*[vcodec!*=av01][vcodec!*=avc1]+bestaudio" |
13 | "best" | 13 | "best[vcodec!*=av01][vcodec!*=avc1]" |
14 | ]; | 14 | ]; |
15 | embed-subs = true; | 15 | embed-subs = true; |
16 | embed-thumbnail = true; | 16 | embed-thumbnail = true; |