From 5cda41a8419170362169d15bd470602f383eeacb Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 2 Dec 2021 13:06:31 -0800 Subject: [PATCH] bypass ytdl-format checks for now (no longer an issue?) --- sh/streamcrap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sh/streamcrap b/sh/streamcrap index b0cef44..4d5d66b 100644 --- a/sh/streamcrap +++ b/sh/streamcrap @@ -74,7 +74,8 @@ mpv_watch() { ### @- local url="$1"; shift local seen=0 A=() - for a; do [ "$a" = "${a#--ytdl-format}" ] && A+=("$a") || seen=1; done +# for a; do [ "$a" = "${a#--ytdl-format}" ] && A+=("$a") || seen=1; done + for a; do A+=("$a"); done # bypass ytdl-format checks [ $seen = 0 ] || printf '%s\n' "NOTE: the --ytdl-format flag is temporarily ignored due to throttling issues." >&2 if has youtube-dl && ! has yt-dlp; then