From d27bde98832e3b7ffb39f3cf6346011b97bb3bc3 Mon Sep 17 00:00:00 2001 From: Jeroen Jacobs Date: Fri, 3 Feb 2023 23:42:43 +0100 Subject: [PATCH] [extractor/GoPlay] Use new API (#6151) Authored by: jeroenj Closes #6032 --- yt_dlp/extractor/goplay.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yt_dlp/extractor/goplay.py b/yt_dlp/extractor/goplay.py index 2882b49dd..960d7d7bc 100644 --- a/yt_dlp/extractor/goplay.py +++ b/yt_dlp/extractor/goplay.py @@ -76,11 +76,11 @@ class GoPlayIE(InfoExtractor): } api = self._download_json( - f'https://api.viervijfzes.be/content/{video_id}', - video_id, headers={'Authorization': self._id_token}) + f'https://api.goplay.be/web/v1/videos/long-form/{video_id}', + video_id, headers={'Authorization': 'Bearer %s' % self._id_token}) formats, subs = self._extract_m3u8_formats_and_subtitles( - api['video']['S'], video_id, ext='mp4', m3u8_id='HLS') + api['manifestUrls']['hls'], video_id, ext='mp4', m3u8_id='HLS') info_dict.update({ 'id': video_id,