Compare commits

...

4 Commits

Author SHA1 Message Date
HobbyistDev
512c6f8796
Merge 1b9c25cc42 into e079ffbda6 2024-11-18 03:41:01 +05:30
pukkandan
1b9c25cc42
Merge remote-tracking branch 'origin/master' into pr/4585 2022-10-19 12:47:38 +05:30
HobbyistDev
a006a37dd3 [TVIplayer] change self.wms_auth_sign_token to TVIPlayer._TOKEN 2022-08-07 08:20:05 +09:00
HobbyistDev
62140b56e5 [tviplayer] Improve _VALID_URL regex, add more test 2022-08-07 08:12:23 +09:00

View File

@ -51,9 +51,11 @@ class TVIPlayerIE(InfoExtractor):
'season_number': 1,
},
}]
_TOKEN = None
def _real_initialize(self):
self.wms_auth_sign_token = self._download_webpage(
if TVIPlayerIE._TOKEN is None:
TVIPlayerIE._TOKEN = self._download_webpage(
'https://services.iol.pt/matrix?userId=', 'wmsAuthSign',
note='Trying to get wmsAuthSign token')
@ -65,7 +67,7 @@ class TVIPlayerIE(InfoExtractor):
r'<script>\s*jsonData\s*=', webpage, 'json_data', video_id)
formats, subtitles = self._extract_m3u8_formats_and_subtitles(
f'{json_data["videoUrl"]}?wmsAuthSign={self.wms_auth_sign_token}',
f'{json_data["videoUrl"]}?wmsAuthSign={TVIPlayerIE._TOKEN}',
video_id, ext='mp4')
return {
'id': video_id,