mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-09 20:42:38 +01:00
parent
7012620e2b
commit
29e7e0781b
@ -161,12 +161,11 @@ class IqiyiIE(InfoExtractor):
|
||||
webpage = self._download_webpage(
|
||||
url, 'temp_id', note='download video page')
|
||||
tvid = self._search_regex(
|
||||
r'tvId ?= ?(\'|\")(?P<tvid>\d+)', webpage, 'tvid', flags=re.I, group='tvid')
|
||||
r'data-player-tvid\s*=\s*[\'"](\d+)', webpage, 'tvid')
|
||||
video_id = self._search_regex(
|
||||
r'videoId ?= ?(\'|\")(?P<video_id>[a-z\d]+)',
|
||||
webpage, 'video_id', flags=re.I, group='video_id')
|
||||
r'data-player-videoid\s*=\s*[\'"]([a-f\d]+)', webpage, 'video_id')
|
||||
swf_url = self._search_regex(
|
||||
r'(?P<swf>http://.+?MainPlayer.+?\.swf)', webpage, 'swf')
|
||||
r'(http://.+?MainPlayer.+?\.swf)', webpage, 'swf player URL')
|
||||
_uuid = uuid.uuid4().hex
|
||||
|
||||
enc_key = self.get_enc_key(swf_url, video_id)
|
||||
|
Loading…
Reference in New Issue
Block a user