8 from .common
import InfoExtractor
9 from ..networking
.exceptions
import HTTPError
21 class HotStarBaseIE(InfoExtractor
):
22 _BASE_URL
= 'https://www.hotstar.com'
23 _API_URL
= 'https://api.hotstar.com'
24 _AKAMAI_ENCRYPTION_KEY
= b
'\x05\xfc\x1a\x01\xca\xc9\x4b\xc4\x12\xfc\x53\x12\x07\x75\xf9\xee'
26 def _call_api_v1(self
, path
, *args
, **kwargs
):
27 return self
._download
_json
(
28 f
'{self._API_URL}/o/v1/{path}', *args
, **kwargs
,
29 headers
={'x-country-code': 'IN', 'x-platform-code': 'PCTV'})
31 def _call_api_impl(self
, path
, video_id
, query
, st
=None, cookies
=None):
32 st
= int_or_none(st
) or int(time
.time())
34 auth
= f
'st={st}~exp={exp}~acl=/*'
35 auth
+= '~hmac=' + hmac
.new(self
._AKAMAI
_ENCRYPTION
_KEY
, auth
.encode(), hashlib
.sha256
).hexdigest()
37 if cookies
and cookies
.get('userUP'):
38 token
= cookies
.get('userUP').value
40 token
= self
._download
_json
(
41 f
'{self._API_URL}/um/v3/users',
42 video_id
, note
='Downloading token',
43 data
=json
.dumps({'device_ids': [{'id': str(uuid
.uuid4()), 'type': 'device_id'}]}).encode(),
46 'x-hs-platform': 'PCTV', # or 'web'
47 'Content-Type': 'application/json',
50 response
= self
._download
_json
(
51 f
'{self._API_URL}/{path}', video_id
, query
=query
,
54 'x-hs-appversion': '6.72.2',
55 'x-hs-platform': 'web',
56 'x-hs-usertoken': token
,
59 if response
['message'] != "Playback URL's fetched successfully":
61 response
['message'], expected
=True)
62 return response
['data']
64 def _call_api_v2(self
, path
, video_id
, st
=None, cookies
=None):
65 return self
._call
_api
_impl
(
66 f
'{path}/content/{video_id}', video_id
, st
=st
, cookies
=cookies
, query
={
67 'desired-config': 'audio_channel:stereo|container:fmp4|dynamic_range:hdr|encryption:plain|ladder:tv|package:dash|resolution:fhd|subs-tag:HotstarVIP|video_codec:h265',
68 'device-id': cookies
.get('device_id').value
if cookies
.get('device_id') else str(uuid
.uuid4()),
73 def _playlist_entries(self
, path
, item_id
, root
=None, **kwargs
):
74 results
= self
._call
_api
_v
1(path
, item_id
, **kwargs
)['body']['results']
75 for video
in traverse_obj(results
, (('assets', None), 'items', ...)):
76 if video
.get('contentId'):
77 yield self
.url_result(
78 HotStarIE
._video
_url
(video
['contentId'], root
=root
), HotStarIE
, video
['contentId'])
81 class HotStarIE(HotStarBaseIE
):
84 https?://(?:www\.)?hotstar\.com(?:/in)?/(?!in/)
86 (?P<type>movies|sports|clips|episode|(?P<tv>tv|shows))/
87 (?(tv)(?:[^/?#]+/){2}|[^?#]*)
94 'url': 'https://www.hotstar.com/can-you-not-spread-rumours/1000076273',
98 'title': 'Can You Not Spread Rumours?',
99 'description': 'md5:c957d8868e9bc793ccb813691cc4c434',
100 'timestamp': 1447248600,
101 'upload_date': '20151111',
103 'episode': 'Can You Not Spread Rumours?',
105 'params': {'skip_download': 'm3u8'},
107 'url': 'https://www.hotstar.com/tv/ek-bhram-sarvagun-sampanna/s-2116/janhvi-targets-suman/1000234847',
111 'title': 'Janhvi Targets Suman',
112 'description': 'md5:78a85509348910bd1ca31be898c5796b',
113 'timestamp': 1556670600,
114 'upload_date': '20190501',
116 'channel': 'StarPlus',
118 'series': 'Ek Bhram - Sarvagun Sampanna',
119 'season': 'Chapter 1',
122 'episode': 'Janhvi Targets Suman',
126 'url': 'https://www.hotstar.com/in/shows/anupama/1260022017/anupama-anuj-share-a-moment/1000282843',
130 'title': 'Anupama, Anuj Share a Moment',
131 'season': 'Chapter 1',
132 'description': 'md5:8d74ed2248423b8b06d5c8add4d7a0c0',
133 'timestamp': 1678149000,
134 'channel': 'StarPlus',
138 'upload_date': '20230307',
139 'episode': 'Anupama, Anuj Share a Moment',
140 'episode_number': 853,
144 'skip': 'HTTP Error 504: Gateway Time-out', # XXX: Investigate 504 errors on some episodes
146 'url': 'https://www.hotstar.com/in/shows/kana-kaanum-kaalangal/1260097087/back-to-school/1260097320',
150 'title': 'Back To School',
151 'season': 'Chapter 1',
152 'description': 'md5:b0d6a4c8a650681491e7405496fc7e13',
153 'timestamp': 1650564000,
154 'channel': 'Hotstar Specials',
155 'series': 'Kana Kaanum Kaalangal',
158 'upload_date': '20220421',
159 'episode': 'Back To School',
165 'url': 'https://www.hotstar.com/in/clips/e3-sairat-kahani-pyaar-ki/1000262286',
169 'title': 'E3 - SaiRat, Kahani Pyaar Ki',
170 'description': 'md5:e3b4b3203bc0c5396fe7d0e4948a6385',
171 'episode': 'E3 - SaiRat, Kahani Pyaar Ki',
172 'upload_date': '20210606',
173 'timestamp': 1622943900,
177 'url': 'https://www.hotstar.com/in/movies/premam/1000091195',
182 'release_year': 2015,
183 'description': 'md5:d833c654e4187b5e34757eafb5b72d7f',
184 'timestamp': 1462149000,
185 'upload_date': '20160502',
190 'url': 'https://www.hotstar.com/movies/radha-gopalam/1000057157',
191 'only_matching': True,
193 'url': 'https://www.hotstar.com/in/sports/cricket/follow-the-blues-2021/recap-eng-fight-back-on-day-2/1260066104',
194 'only_matching': True,
196 'url': 'https://www.hotstar.com/in/sports/football/most-costly-pl-transfers-ft-grealish/1260065956',
197 'only_matching': True,
204 'episode': 'episode',
213 'vcodec': 'video_codec',
214 'dr': 'dynamic_range',
218 'language': 'language',
219 'acodec': 'audio_codec',
220 'vcodec': 'video_codec',
224 def _video_url(cls
, video_id
, video_type
=None, *, slug
='ignore_me', root
=None):
225 assert None in (video_type
, root
)
227 root
= join_nonempty(cls
._BASE
_URL
, video_type
, delim
='/')
228 return f
'{root}/{slug}/{video_id}'
230 def _real_extract(self
, url
):
231 video_id
, video_type
= self
._match
_valid
_url
(url
).group('id', 'type')
232 video_type
= self
._TYPE
.get(video_type
, video_type
)
233 cookies
= self
._get
_cookies
(url
) # Cookies before any request
235 video_data
= traverse_obj(
237 f
'{video_type}/detail', video_id
, fatal
=False, query
={'tas': 10000, 'contentId': video_id
}),
238 ('body', 'results', 'item', {dict}
)) or {}
239 if not self
.get_param('allow_unplayable_formats') and video_data
.get('drmProtected'):
240 self
.report_drm(video_id
)
242 # See https://github.com/yt-dlp/yt-dlp/issues/396
243 st
= self
._download
_webpage
_handle
(f
'{self._BASE_URL}/in', video_id
)[1].headers
.get('x-origin-date')
245 geo_restricted
= False
246 formats
, subs
= [], {}
247 headers
= {'Referer': f
'{self._BASE_URL}/in'}
249 # change to v2 in the future
250 playback_sets
= self
._call
_api
_v
2('play/v1/playback', video_id
, st
=st
, cookies
=cookies
)['playBackSets']
251 for playback_set
in playback_sets
:
252 if not isinstance(playback_set
, dict):
254 tags
= str_or_none(playback_set
.get('tagsCombination')) or ''
255 if any(f
'{prefix}:{ignore}' in tags
256 for key
, prefix
in self
._IGNORE
_MAP
.items()
257 for ignore
in self
._configuration
_arg
(key
)):
260 format_url
= url_or_none(playback_set
.get('playbackUrl'))
263 format_url
= re
.sub(r
'(?<=//staragvod)(\d)', r
'web\1', format_url
)
264 ext
= determine_ext(format_url
)
266 current_formats
, current_subs
= [], {}
268 if 'package:hls' in tags
or ext
== 'm3u8':
269 current_formats
, current_subs
= self
._extract
_m
3u8_formats
_and
_subtitles
(
270 format_url
, video_id
, ext
='mp4', headers
=headers
)
271 elif 'package:dash' in tags
or ext
== 'mpd':
272 current_formats
, current_subs
= self
._extract
_mpd
_formats
_and
_subtitles
(
273 format_url
, video_id
, headers
=headers
)
275 pass # XXX: produce broken files
279 'width': int_or_none(playback_set
.get('width')),
280 'height': int_or_none(playback_set
.get('height')),
282 except ExtractorError
as e
:
283 if isinstance(e
.cause
, HTTPError
) and e
.cause
.status
== 403:
284 geo_restricted
= True
287 tag_dict
= dict((*t
.split(':', 1), None)[:2] for t
in tags
.split(';'))
288 if tag_dict
.get('encryption') not in ('plain', None):
289 for f
in current_formats
:
291 for f
in current_formats
:
292 for k
, v
in self
._TAG
_FIELDS
.items():
294 f
[k
] = tag_dict
.get(v
)
295 if f
.get('vcodec') != 'none' and not f
.get('dynamic_range'):
296 f
['dynamic_range'] = tag_dict
.get('dynamic_range')
297 if f
.get('acodec') != 'none' and not f
.get('audio_channels'):
298 f
['audio_channels'] = {
301 }.get(tag_dict
.get('audio_channel'))
302 f
['format_note'] = join_nonempty(
303 tag_dict
.get('ladder'),
304 tag_dict
.get('audio_channel') if f
.get('acodec') != 'none' else None,
305 f
.get('format_note'),
308 formats
.extend(current_formats
)
309 subs
= self
._merge
_subtitles
(subs
, current_subs
)
311 if not formats
and geo_restricted
:
312 self
.raise_geo_restricted(countries
=['IN'], metadata_available
=True)
313 self
._remove
_duplicate
_formats
(formats
)
315 f
.setdefault('http_headers', {}).update(headers
)
319 'title': video_data
.get('title'),
320 'description': video_data
.get('description'),
321 'duration': int_or_none(video_data
.get('duration')),
322 'timestamp': int_or_none(traverse_obj(video_data
, 'broadcastDate', 'startDate')),
323 'release_year': int_or_none(video_data
.get('year')),
326 'channel': video_data
.get('channelName'),
327 'channel_id': str_or_none(video_data
.get('channelId')),
328 'series': video_data
.get('showName'),
329 'season': video_data
.get('seasonName'),
330 'season_number': int_or_none(video_data
.get('seasonNo')),
331 'season_id': str_or_none(video_data
.get('seasonId')),
332 'episode': video_data
.get('title'),
333 'episode_number': int_or_none(video_data
.get('episodeNo')),
337 class HotStarPrefixIE(InfoExtractor
):
338 """ The "hotstar:" prefix is no longer in use, but this is kept for backward compatibility """
340 _VALID_URL
= r
'hotstar:(?:(?P<type>\w+):)?(?P<id>\d+)$'
342 'url': 'hotstar:1000076273',
343 'only_matching': True,
345 'url': 'hotstar:movies:1260009879',
349 'title': 'Nuvvu Naaku Nachav',
350 'description': 'md5:d43701b1314e6f8233ce33523c043b7d',
351 'timestamp': 1567525674,
352 'upload_date': '20190903',
354 'episode': 'Nuvvu Naaku Nachav',
357 'url': 'hotstar:episode:1000234847',
358 'only_matching': True,
361 'url': 'hotstar:sports:1260065956',
362 'only_matching': True,
365 'url': 'hotstar:sports:1260066104',
366 'only_matching': True,
369 def _real_extract(self
, url
):
370 video_id
, video_type
= self
._match
_valid
_url
(url
).group('id', 'type')
371 return self
.url_result(HotStarIE
._video
_url
(video_id
, video_type
), HotStarIE
, video_id
)
374 class HotStarPlaylistIE(HotStarBaseIE
):
375 IE_NAME
= 'hotstar:playlist'
376 _VALID_URL
= r
'https?://(?:www\.)?hotstar\.com(?:/in)?/(?:tv|shows)(?:/[^/]+){2}/list/[^/]+/t-(?P<id>\w+)'
378 'url': 'https://www.hotstar.com/tv/savdhaan-india/s-26/list/popular-clips/t-3_2_26',
382 'playlist_mincount': 20,
384 'url': 'https://www.hotstar.com/shows/savdhaan-india/s-26/list/popular-clips/t-3_2_26',
385 'only_matching': True,
387 'url': 'https://www.hotstar.com/tv/savdhaan-india/s-26/list/extras/t-2480',
388 'only_matching': True,
390 'url': 'https://www.hotstar.com/in/tv/karthika-deepam/15457/list/popular-clips/t-3_2_1272',
391 'only_matching': True,
394 def _real_extract(self
, url
):
395 id_
= self
._match
_id
(url
)
396 return self
.playlist_result(
397 self
._playlist
_entries
('tray/find', id_
, query
={'tas': 10000, 'uqId': id_
}), id_
)
400 class HotStarSeasonIE(HotStarBaseIE
):
401 IE_NAME
= 'hotstar:season'
402 _VALID_URL
= r
'(?P<url>https?://(?:www\.)?hotstar\.com(?:/in)?/(?:tv|shows)/[^/]+/\w+)/seasons/[^/]+/ss-(?P<id>\w+)'
404 'url': 'https://www.hotstar.com/tv/radhakrishn/1260000646/seasons/season-2/ss-8028',
408 'playlist_mincount': 35,
410 'url': 'https://www.hotstar.com/in/tv/ishqbaaz/9567/seasons/season-2/ss-4357',
414 'playlist_mincount': 30,
416 'url': 'https://www.hotstar.com/in/tv/bigg-boss/14714/seasons/season-4/ss-8208/',
420 'playlist_mincount': 19,
422 'url': 'https://www.hotstar.com/in/shows/bigg-boss/14714/seasons/season-4/ss-8208/',
423 'only_matching': True,
426 def _real_extract(self
, url
):
427 url
, season_id
= self
._match
_valid
_url
(url
).groups()
428 return self
.playlist_result(self
._playlist
_entries
(
429 'season/asset', season_id
, url
, query
={'tao': 0, 'tas': 0, 'size': 10000, 'id': season_id
}), season_id
)
432 class HotStarSeriesIE(HotStarBaseIE
):
433 IE_NAME
= 'hotstar:series'
434 _VALID_URL
= r
'(?P<url>https?://(?:www\.)?hotstar\.com(?:/in)?/(?:tv|shows)/[^/]+/(?P<id>\d+))/?(?:[#?]|$)'
436 'url': 'https://www.hotstar.com/in/tv/radhakrishn/1260000646',
440 'playlist_mincount': 690,
442 'url': 'https://www.hotstar.com/tv/dancee-/1260050431',
446 'playlist_mincount': 43,
448 'url': 'https://www.hotstar.com/in/tv/mahabharat/435/',
452 'playlist_mincount': 267,
454 'url': 'https://www.hotstar.com/in/shows/anupama/1260022017/',
458 'playlist_mincount': 940,
461 def _real_extract(self
, url
):
462 url
, series_id
= self
._match
_valid
_url
(url
).groups()
463 id_
= self
._call
_api
_v
1(
464 'show/detail', series_id
, query
={'contentId': series_id
})['body']['results']['item']['id']
466 return self
.playlist_result(self
._playlist
_entries
(
467 'tray/g/1/items', series_id
, url
, query
={'tao': 0, 'tas': 10000, 'etid': 0, 'eid': id_
}), series_id
)