diff options
Diffstat (limited to 'user-profiles')
-rw-r--r-- | user-profiles/yt-dlp.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/user-profiles/yt-dlp.nix b/user-profiles/yt-dlp.nix index 1a30ab5a..792f6613 100644 --- a/user-profiles/yt-dlp.nix +++ b/user-profiles/yt-dlp.nix | |||
@@ -14,9 +14,15 @@ | |||
14 | sub-langs = "all,-live_chat,-rechat"; | 14 | sub-langs = "all,-live_chat,-rechat"; |
15 | prefer-free-formats = true; | 15 | prefer-free-formats = true; |
16 | embed-metadata = true; | 16 | embed-metadata = true; |
17 | downloader = "${pkgs.aria2}/bin/aria2c"; | 17 | # downloader = "${pkgs.axel}/bin/axel"; |
18 | concurrent-fragments = 4; | ||
19 | buffer-size = "16K"; | ||
18 | sponsorblock-mark = "all"; | 20 | sponsorblock-mark = "all"; |
19 | restrict-filenames = true; | 21 | restrict-filenames = true; |
22 | extractor-args = lib.concatStringsSep ";" [ | ||
23 | "youtube:player-client=android,web" | ||
24 | "youtube:formats=dashy" | ||
25 | ]; | ||
20 | }; | 26 | }; |
21 | }; | 27 | }; |
22 | }; | 28 | }; |