From af20339f1b20d463f99af2f0ff8262de8296741b Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 26 Jun 2023 19:08:35 +0200 Subject: [PATCH] ytcc: Also use correct name for vp9 --- users/simon/modules/ytcc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/simon/modules/ytcc.nix b/users/simon/modules/ytcc.nix index 2003b31..c1cff3d 100644 --- a/users/simon/modules/ytcc.nix +++ b/users/simon/modules/ytcc.nix @@ -1,6 +1,6 @@ { lib, pkgs, ... }: let - ytdl-format = map (vc: "bestvideo[vcodec^=${vc}][width<=1920]+bestaudio[acodec^=opus]") [ "av01" "vp9" "avc1" ] + ytdl-format = map (vc: "bestvideo[vcodec^=${vc}][width<=1920]+bestaudio[acodec^=opus]") [ "av01" "vp09" "avc1" ] ++ [ "bestvideo+bestaudio[acodec^=opus]" "bestvideo+bestaudio"