]> jfr.im git - yt-dlp.git/commitdiff
[extractor/GoPlay] Use new API (#6151)
authorJeroen Jacobs <redacted>
Fri, 3 Feb 2023 22:42:43 +0000 (23:42 +0100)
committerGitHub <redacted>
Fri, 3 Feb 2023 22:42:43 +0000 (04:12 +0530)
Authored by: jeroenj
Closes #6032

yt_dlp/extractor/goplay.py

index 2882b49dd32fd731515bd2bfa694b9f8f99d9b7e..960d7d7bc0050b4ba965c3488d611c31acb093e1 100644 (file)
@@ -76,11 +76,11 @@ def _real_extract(self, url):
             }
 
         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,