From e10a3cfa729ba7d2af759f0daa1b5a2c62b8252b Mon Sep 17 00:00:00 2001 From: Jaka Date: Sun, 14 Nov 2021 21:38:50 +0100 Subject: [PATCH] Changed the download to yt-dlp because of youtube's throttling of youtube-dl. --- fetch_song.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fetch_song.py b/fetch_song.py index adfee34..1a54784 100644 --- a/fetch_song.py +++ b/fetch_song.py @@ -1,5 +1,5 @@ -import youtube_dl +import yt_dlp import sys if __name__ == "__main__": - youtube_dl.main(sys.argv[1:]) + yt_dlp.main(sys.argv[1:])