From 9ecca7c92a63ea9224e28a4566db3f87ebdf3808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Sat, 8 Mar 2025 11:04:31 +0100 Subject: [PATCH] Update `_call_api` --- yt_dlp/extractor/vrt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/vrt.py b/yt_dlp/extractor/vrt.py index ba2301ae5..aeeddc52a 100644 --- a/yt_dlp/extractor/vrt.py +++ b/yt_dlp/extractor/vrt.py @@ -103,7 +103,7 @@ def _call_api(self, video_id, client='null', id_token=None, version='v2'): }, separators=(',', ':')).encode())['vrtPlayerToken'] return self._download_json( - f'https://media-services-public.vrt.be/media-aggregator/{version}/media-items/{video_id}', + f'https://media-services-public.vrt.be/vualto-video-aggregator-web/rest/external/{version}/videos/{video_id}', video_id, 'Downloading API JSON', 'Failed to download API JSON', query={ 'client': client, 'vrtPlayerToken': vrt_player_token,