From aeed8555e67a595f5190cdadf2fc42fcfc6e3ad9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20A=2E=20Holm?= Date: Tue, 12 Oct 2021 17:43:08 +0200 Subject: [PATCH] yd: Use yt-dlp instead of youtube-dl Downloading with youtube-dl takes forever, the download speeds are limited to around 60 kB/sec. yt-dlp doesn't have that problem. 2865b3ea-2b74-11ec-aa9c-5582e081d110 --- yd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yd b/yd index 83d7e6fa..3683226c 100755 --- a/yd +++ b/yd @@ -7,7 +7,7 @@ test -z "$YDTITLE" && YDTITLE="%(title)s" -youtube-dl -4 -o "$YDTITLE-%(id)s.%(ext)s" \ +yt-dlp -4 -o "$YDTITLE-%(id)s.%(ext)s" \ --ignore-errors --no-overwrites \ --write-description --write-info-json \ --write-sub --write-thumbnail --sub-lang en,en-US,no,nb \ -- 2.11.4.GIT