[hotstar] fix extraction in python 2(closes #17696)
This commit is contained in:
parent
66d106f270
commit
05e7c184da
1 changed files with 6 additions and 1 deletions
|
@ -11,6 +11,7 @@ from ..utils import (
|
||||||
determine_ext,
|
determine_ext,
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
|
try_get,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -72,7 +73,11 @@ class HotStarIE(HotStarBaseIE):
|
||||||
app_state = self._parse_json(self._search_regex(
|
app_state = self._parse_json(self._search_regex(
|
||||||
r'<script>window\.APP_STATE\s*=\s*({.+?})</script>',
|
r'<script>window\.APP_STATE\s*=\s*({.+?})</script>',
|
||||||
webpage, 'app state'), video_id)
|
webpage, 'app state'), video_id)
|
||||||
video_data = list(app_state.values())[0]['initialState']['contentData']['content']
|
video_data = {}
|
||||||
|
for v in app_state.values():
|
||||||
|
content = try_get(v, lambda x: x['initialState']['contentData']['content'], dict)
|
||||||
|
if content and content.get('contentId') == video_id:
|
||||||
|
video_data = content
|
||||||
|
|
||||||
title = video_data['title']
|
title = video_data['title']
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue