mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[9now] Fix extraction
This commit is contained in:
parent
84a18e9b90
commit
7324243750
1 changed files with 8 additions and 1 deletions
|
@ -44,7 +44,14 @@ def _real_extract(self, url):
|
|||
page_data = self._parse_json(self._search_regex(
|
||||
r'window\.__data\s*=\s*({.*?});', webpage,
|
||||
'page data'), display_id)
|
||||
common_data = page_data.get('episode', {}).get('episode') or page_data.get('clip', {}).get('clip')
|
||||
current_key = (
|
||||
page_data.get('episode', {}).get('currentEpisodeKey') or
|
||||
page_data.get('clip', {}).get('currentClipKey')
|
||||
)
|
||||
common_data = (
|
||||
page_data.get('episode', {}).get('episodeCache', {}).get(current_key, {}).get('episode') or
|
||||
page_data.get('clip', {}).get('clipCache', {}).get(current_key, {}).get('clip')
|
||||
)
|
||||
video_data = common_data['video']
|
||||
|
||||
if video_data.get('drm'):
|
||||
|
|
Loading…
Reference in a new issue