[extractor/GoPlay] Use new API (#6151)

Authored by: jeroenj
Closes #6032
This commit is contained in:
Jeroen Jacobs 2023-02-03 23:42:43 +01:00 committed by GitHub
parent 0fe87a8730
commit d27bde9883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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,