mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 09:57:59 +09:00
[youtube] More explicit player config JSON extraction (fixes #7468)
This commit is contained in:
parent
0c176d7bde
commit
3cfd000849
@ -1074,7 +1074,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||||||
age_gate = False
|
age_gate = False
|
||||||
video_info = None
|
video_info = None
|
||||||
# Try looking directly into the video webpage
|
# Try looking directly into the video webpage
|
||||||
mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});', video_webpage)
|
mobj = re.search(r';ytplayer\.config\s*=\s*({.*?});ytplayer', video_webpage)
|
||||||
if mobj:
|
if mobj:
|
||||||
json_code = uppercase_escape(mobj.group(1))
|
json_code = uppercase_escape(mobj.group(1))
|
||||||
ytplayer_config = json.loads(json_code)
|
ytplayer_config = json.loads(json_code)
|
||||||
|
Loading…
Reference in New Issue
Block a user