Skip to content

Commit

Permalink
[hotstar] Add support for alternative app state layout (closes #18320)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Nov 29, 2018
1 parent 053e5b1 commit adbbdef
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion youtube_dl/extractor/hotstar.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class HotStarIE(HotStarBaseIE):
IE_NAME = 'hotstar'
_VALID_URL = r'https?://(?:www\.)?hotstar\.com/(?:.+?[/-])?(?P<id>\d{10})'
_TESTS = [{
# contentData
'url': 'https://www.hotstar.com/can-you-not-spread-rumours/1000076273',
'info_dict': {
'id': '1000076273',
Expand All @@ -57,6 +58,10 @@ class HotStarIE(HotStarBaseIE):
# m3u8 download
'skip_download': True,
}
}, {
# contentDetail
'url': 'https://www.hotstar.com/movies/radha-gopalam/1000057157',
'only_matching': True,
}, {
'url': 'http://www.hotstar.com/sports/cricket/rajitha-sizzles-on-debut-with-329/2001477583',
'only_matching': True,
Expand All @@ -74,8 +79,12 @@ def _real_extract(self, url):
r'<script>window\.APP_STATE\s*=\s*({.+?})</script>',
webpage, 'app state'), video_id)
video_data = {}
getters = (
lambda x, k=k: x['initialState']['content%s' % k]['content']
for k in ('Data', 'Detail')
)
for v in app_state.values():
content = try_get(v, lambda x: x['initialState']['contentData']['content'], dict)
content = try_get(v, getters, dict)
if content and content.get('contentId') == video_id:
video_data = content

Expand Down

0 comments on commit adbbdef

Please sign in to comment.