mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
[TVIplayer] change self.wms_auth_sign_token
to TVIPlayer._TOKEN
This commit is contained in:
parent
62140b56e5
commit
a006a37dd3
|
@ -51,11 +51,13 @@ class TVIPlayerIE(InfoExtractor):
|
|||
'season_number': 1,
|
||||
}
|
||||
}]
|
||||
_TOKEN = None
|
||||
|
||||
def _real_initialize(self):
|
||||
self.wms_auth_sign_token = self._download_webpage(
|
||||
'https://services.iol.pt/matrix?userId=', 'wmsAuthSign',
|
||||
note='Trying to get wmsAuthSign token')
|
||||
if TVIPlayerIE._TOKEN is None:
|
||||
TVIPlayerIE._TOKEN = self._download_webpage(
|
||||
'https://services.iol.pt/matrix?userId=', 'wmsAuthSign',
|
||||
note='Trying to get wmsAuthSign token')
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
|
@ -65,7 +67,7 @@ def _real_extract(self, url):
|
|||
r'<script>\s*jsonData\s*=\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,
|
||||
|
|
Loading…
Reference in a new issue