aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/goplay.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/goplay.py')
-rw-r--r--hypervideo_dl/extractor/goplay.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/hypervideo_dl/extractor/goplay.py b/hypervideo_dl/extractor/goplay.py
index 2882b49..960d7d7 100644
--- a/hypervideo_dl/extractor/goplay.py
+++ b/hypervideo_dl/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,