diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-11-03 09:52:52 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-11-03 09:52:52 +0100 |
commit | 128904cd3b9e6ecf7ee5a91564b0f0c67deb4530 (patch) | |
tree | 7306ba4558145b5f54311569199f04743951b571 /user-profiles/mpv/default.nix | |
parent | 3b37f9780e11bb8a8f7320e7cf2ba7a5b6a4b89b (diff) | |
download | nixos-128904cd3b9e6ecf7ee5a91564b0f0c67deb4530.tar nixos-128904cd3b9e6ecf7ee5a91564b0f0c67deb4530.tar.gz nixos-128904cd3b9e6ecf7ee5a91564b0f0c67deb4530.tar.bz2 nixos-128904cd3b9e6ecf7ee5a91564b0f0c67deb4530.tar.xz nixos-128904cd3b9e6ecf7ee5a91564b0f0c67deb4530.zip |
gkleen@sif: switch to yt-dlp
Diffstat (limited to 'user-profiles/mpv/default.nix')
-rw-r--r-- | user-profiles/mpv/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/user-profiles/mpv/default.nix b/user-profiles/mpv/default.nix index 642eb004..f8454508 100644 --- a/user-profiles/mpv/default.nix +++ b/user-profiles/mpv/default.nix | |||
@@ -8,8 +8,10 @@ | |||
8 | config = { | 8 | config = { |
9 | ytdl = true; | 9 | ytdl = true; |
10 | ytdl-format = lib.concatStringsSep "/" [ | 10 | ytdl-format = lib.concatStringsSep "/" [ |
11 | "bestvideo[width<=2560][height<=1440][fps<=60][protocol!=http_dash_segments]+bestaudio[protocol!=http_dash_segments]" | 11 | "bestvideo[width<=1920][height<=1080][fps<=60][protocol!=http_dash_segments]+bestaudio[protocol!=http_dash_segments]" |
12 | "best[width<=2560][height<=1440][fps<=60][protocol!=http_dash_segments]" | 12 | "best[width<=1920][height<=1080][fps<=60][protocol!=http_dash_segments]" |
13 | # "bestvideo[width<=2560][height<=1440][fps<=60][protocol!=http_dash_segments]+bestaudio[protocol!=http_dash_segments]" | ||
14 | # "best[width<=2560][height<=1440][fps<=60][protocol!=http_dash_segments]" | ||
13 | "best[protocol!=http_dash_segments]" | 15 | "best[protocol!=http_dash_segments]" |
14 | ]; | 16 | ]; |
15 | ytdl-raw-options = lib.concatStringsSep "," [ | 17 | ytdl-raw-options = lib.concatStringsSep "," [ |