From 6f461d889c1159601d69b1c1c039fab93e8348b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Sandstr=C3=B6m?= Date: Tue, 18 Apr 2023 02:00:25 +0200 Subject: [PATCH] Update get playlists endpoint URL --- twitchdl/twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitchdl/twitch.py b/twitchdl/twitch.py index ff7b6e3..d175607 100644 --- a/twitchdl/twitch.py +++ b/twitchdl/twitch.py @@ -335,7 +335,7 @@ def get_playlists(video_id, access_token): """ For a given video return a playlist which contains possible video qualities. """ - url = "http://usher.twitch.tv/vod/{}".format(video_id) + url = "http://usher.ttvnw.net/vod/{}".format(video_id) response = httpx.get(url, params={ "nauth": access_token['value'],