]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/hotstar.py
[extractor/youtube] Ignore wrong fps of some formats
[yt-dlp.git] / yt_dlp / extractor / hotstar.py
CommitLineData
85cd69ad
RA
1import hashlib
2import hmac
fad689c7 3import json
1cb812d3 4import re
85cd69ad 5import time
2533f5b6 6import uuid
909191de 7
fb8e402a 8from .common import InfoExtractor
fad689c7 9from ..compat import compat_HTTPError, compat_str
fb8e402a 10from ..utils import (
909191de 11 ExtractorError,
fad689c7 12 determine_ext,
fb8e402a 13 int_or_none,
a1ddaa89 14 join_nonempty,
2533f5b6 15 str_or_none,
fad689c7 16 traverse_obj,
2533f5b6 17 url_or_none,
fb8e402a 18)
19
20
909191de 21class HotStarBaseIE(InfoExtractor):
a1ddaa89 22 _BASE_URL = 'https://www.hotstar.com'
23 _API_URL = 'https://api.hotstar.com'
85cd69ad
RA
24 _AKAMAI_ENCRYPTION_KEY = b'\x05\xfc\x1a\x01\xca\xc9\x4b\xc4\x12\xfc\x53\x12\x07\x75\xf9\xee'
25
fad689c7 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'})
30
fe07e2c6 31 def _call_api_impl(self, path, video_id, query, st=None, cookies=None):
9fc0de57 32 st = int_or_none(st) or int(time.time())
85cd69ad
RA
33 exp = st + 6000
34 auth = 'st=%d~exp=%d~acl=/*' % (st, exp)
35 auth += '~hmac=' + hmac.new(self._AKAMAI_ENCRYPTION_KEY, auth.encode(), hashlib.sha256).hexdigest()
6923b538 36
b6a35ad8 37 if cookies and cookies.get('userUP'):
fe07e2c6
A
38 token = cookies.get('userUP').value
39 else:
40 token = self._download_json(
a1ddaa89 41 f'{self._API_URL}/um/v3/users',
fe07e2c6
A
42 video_id, note='Downloading token',
43 data=json.dumps({"device_ids": [{"id": compat_str(uuid.uuid4()), "type": "device_id"}]}).encode('utf-8'),
44 headers={
45 'hotstarauth': auth,
46 'x-hs-platform': 'PCTV', # or 'web'
47 'Content-Type': 'application/json',
48 })['user_identity']
6923b538 49
85cd69ad 50 response = self._download_json(
a1ddaa89 51 f'{self._API_URL}/{path}', video_id, query=query,
52 headers={
85cd69ad 53 'hotstarauth': auth,
7078ec64
N
54 'x-hs-appversion': '6.72.2',
55 'x-hs-platform': 'web',
56 'x-hs-usertoken': token,
a1ddaa89 57 })
6923b538 58
7078ec64 59 if response['message'] != "Playback URL's fetched successfully":
85cd69ad 60 raise ExtractorError(
7078ec64
N
61 response['message'], expected=True)
62 return response['data']
909191de 63
5d5c0f7e 64 def _call_api_v2(self, path, video_id, st=None, cookies=None):
2533f5b6 65 return self._call_api_impl(
a1ddaa89 66 f'{path}/content/{video_id}', video_id, st=st, cookies=cookies, query={
a64907d0 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',
fe07e2c6 68 'device-id': cookies.get('device_id').value if cookies.get('device_id') else compat_str(uuid.uuid4()),
7078ec64
N
69 'os-name': 'Windows',
70 'os-version': '10',
2533f5b6
S
71 })
72
fad689c7 73 def _playlist_entries(self, path, item_id, root=None, **kwargs):
74 results = self._call_api_v1(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'])
79
909191de
S
80
81class HotStarIE(HotStarBaseIE):
85cd69ad 82 IE_NAME = 'hotstar'
6e639032 83 _VALID_URL = r'''(?x)
a1ddaa89 84 https?://(?:www\.)?hotstar\.com(?:/in)?/(?!in/)
85 (?:
7f8ddebb 86 (?P<type>movies|sports|episode|(?P<tv>tv|shows))/
a1ddaa89 87 (?(tv)(?:[^/?#]+/){2}|[^?#]*)
88 )?
89 [^/?#]+/
90 (?P<id>\d{10})
91 '''
92
89d23f37 93 _TESTS = [{
85cd69ad 94 'url': 'https://www.hotstar.com/can-you-not-spread-rumours/1000076273',
fb8e402a 95 'info_dict': {
96 'id': '1000076273',
97 'ext': 'mp4',
85cd69ad 98 'title': 'Can You Not Spread Rumours?',
fb8e402a 99 'description': 'md5:c957d8868e9bc793ccb813691cc4c434',
85cd69ad 100 'timestamp': 1447248600,
fb8e402a 101 'upload_date': '20151111',
102 'duration': 381,
a1ddaa89 103 'episode': 'Can You Not Spread Rumours?',
fb8e402a 104 },
fad689c7 105 'params': {'skip_download': 'm3u8'},
2533f5b6 106 }, {
2533f5b6 107 'url': 'https://www.hotstar.com/tv/ek-bhram-sarvagun-sampanna/s-2116/janhvi-targets-suman/1000234847',
b6a35ad8
A
108 'info_dict': {
109 'id': '1000234847',
110 'ext': 'mp4',
111 'title': 'Janhvi Targets Suman',
112 'description': 'md5:78a85509348910bd1ca31be898c5796b',
113 'timestamp': 1556670600,
114 'upload_date': '20190501',
115 'duration': 1219,
116 'channel': 'StarPlus',
117 'channel_id': 3,
118 'series': 'Ek Bhram - Sarvagun Sampanna',
119 'season': 'Chapter 1',
120 'season_number': 1,
121 'season_id': 6771,
122 'episode': 'Janhvi Targets Suman',
123 'episode_number': 8,
a1ddaa89 124 }
7f8ddebb 125 }, {
126 'url': 'https://www.hotstar.com/in/shows/anupama/1260022017/anupama-anuj-share-a-moment/1000282843',
127 'info_dict': {
128 'id': '1000282843',
129 'ext': 'mp4',
130 'title': 'Anupama, Anuj Share a Moment',
131 'season': 'Chapter 1',
132 'description': 'md5:8d74ed2248423b8b06d5c8add4d7a0c0',
133 'timestamp': 1678149000,
134 'channel': 'StarPlus',
135 'series': 'Anupama',
136 'season_number': 1,
137 'season_id': 7399,
138 'upload_date': '20230307',
139 'episode': 'Anupama, Anuj Share a Moment',
140 'episode_number': 853,
141 'duration': 1272,
142 'channel_id': 3,
143 },
b6a35ad8 144 }, {
a1ddaa89 145 'url': 'https://www.hotstar.com/movies/radha-gopalam/1000057157',
146 'only_matching': True,
147 }, {
148 'url': 'https://www.hotstar.com/in/sports/cricket/follow-the-blues-2021/recap-eng-fight-back-on-day-2/1260066104',
149 'only_matching': True,
150 }, {
151 'url': 'https://www.hotstar.com/in/sports/football/most-costly-pl-transfers-ft-grealish/1260065956',
2533f5b6 152 'only_matching': True,
89d23f37 153 }]
85cd69ad 154 _GEO_BYPASS = False
a1ddaa89 155
b6a35ad8
A
156 _TYPE = {
157 'movies': 'movie',
158 'sports': 'match',
159 'episode': 'episode',
160 'tv': 'episode',
7f8ddebb 161 'shows': 'episode',
b6a35ad8
A
162 None: 'content',
163 }
fb8e402a 164
a1ddaa89 165 _IGNORE_MAP = {
166 'res': 'resolution',
167 'vcodec': 'video_codec',
168 'dr': 'dynamic_range',
169 }
170
e74a3c6d 171 _TAG_FIELDS = {
172 'language': 'language',
173 'acodec': 'audio_codec',
174 'vcodec': 'video_codec',
175 }
176
a1ddaa89 177 @classmethod
178 def _video_url(cls, video_id, video_type=None, *, slug='ignore_me', root=None):
179 assert None in (video_type, root)
180 if not root:
181 root = join_nonempty(cls._BASE_URL, video_type, delim='/')
182 return f'{root}/{slug}/{video_id}'
183
fb8e402a 184 def _real_extract(self, url):
a1ddaa89 185 video_id, video_type = self._match_valid_url(url).group('id', 'type')
b6a35ad8 186 video_type = self._TYPE.get(video_type, video_type)
5d5c0f7e 187 cookies = self._get_cookies(url) # Cookies before any request
0dac7cbb 188
fad689c7 189 video_data = self._call_api_v1(f'{video_type}/detail', video_id,
190 query={'tas': 10000, 'contentId': video_id})['body']['results']['item']
a06916d9 191 if not self.get_param('allow_unplayable_formats') and video_data.get('drmProtected'):
88acdbc2 192 self.report_drm(video_id)
193
a1ddaa89 194 # See https://github.com/yt-dlp/yt-dlp/issues/396
195 st = self._download_webpage_handle(f'{self._BASE_URL}/in', video_id)[1].headers.get('x-origin-date')
196
2533f5b6 197 geo_restricted = False
a1ddaa89 198 formats, subs = [], {}
199 headers = {'Referer': f'{self._BASE_URL}/in'}
200
6923b538 201 # change to v2 in the future
5d5c0f7e 202 playback_sets = self._call_api_v2('play/v1/playback', video_id, st=st, cookies=cookies)['playBackSets']
2533f5b6
S
203 for playback_set in playback_sets:
204 if not isinstance(playback_set, dict):
205 continue
a1ddaa89 206 tags = str_or_none(playback_set.get('tagsCombination')) or ''
207 if any(f'{prefix}:{ignore}' in tags
208 for key, prefix in self._IGNORE_MAP.items()
209 for ignore in self._configuration_arg(key)):
210 continue
e74a3c6d 211 tag_dict = dict((t.split(':', 1) + [None])[:2] for t in tags.split(';'))
a1ddaa89 212
2533f5b6
S
213 format_url = url_or_none(playback_set.get('playbackUrl'))
214 if not format_url:
215 continue
a1ddaa89 216 format_url = re.sub(r'(?<=//staragvod)(\d)', r'web\1', format_url)
2533f5b6 217 ext = determine_ext(format_url)
a1ddaa89 218
6ff34542 219 current_formats, current_subs = [], {}
85cd69ad 220 try:
2533f5b6 221 if 'package:hls' in tags or ext == 'm3u8':
6ff34542 222 current_formats, current_subs = self._extract_m3u8_formats_and_subtitles(
e74a3c6d 223 format_url, video_id, ext='mp4', headers=headers)
2533f5b6 224 elif 'package:dash' in tags or ext == 'mpd':
6ff34542 225 current_formats, current_subs = self._extract_mpd_formats_and_subtitles(
e74a3c6d 226 format_url, video_id, headers=headers)
2533f5b6 227 elif ext == 'f4m':
a1ddaa89 228 pass # XXX: produce broken files
2533f5b6 229 else:
6ff34542 230 current_formats = [{
2533f5b6
S
231 'url': format_url,
232 'width': int_or_none(playback_set.get('width')),
233 'height': int_or_none(playback_set.get('height')),
6ff34542 234 }]
85cd69ad
RA
235 except ExtractorError as e:
236 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
2533f5b6
S
237 geo_restricted = True
238 continue
a1ddaa89 239
e74a3c6d 240 if tag_dict.get('encryption') not in ('plain', None):
6ff34542
AG
241 for f in current_formats:
242 f['has_drm'] = True
e74a3c6d 243 for f in current_formats:
244 for k, v in self._TAG_FIELDS.items():
245 if not f.get(k):
246 f[k] = tag_dict.get(v)
247 if f.get('vcodec') != 'none' and not f.get('dynamic_range'):
248 f['dynamic_range'] = tag_dict.get('dynamic_range')
249 if f.get('acodec') != 'none' and not f.get('audio_channels'):
250 f['audio_channels'] = {
251 'stereo': 2,
252 'dolby51': 6,
253 }.get(tag_dict.get('audio_channel'))
254 f['format_note'] = join_nonempty(
255 tag_dict.get('ladder'),
256 tag_dict.get('audio_channel') if f.get('acodec') != 'none' else None,
257 f.get('format_note'),
258 delim=', ')
a1ddaa89 259
6ff34542
AG
260 formats.extend(current_formats)
261 subs = self._merge_subtitles(subs, current_subs)
a1ddaa89 262
2533f5b6 263 if not formats and geo_restricted:
b7da73eb 264 self.raise_geo_restricted(countries=['IN'], metadata_available=True)
e74a3c6d 265 self._remove_duplicate_formats(formats)
d7def23d
RA
266 for f in formats:
267 f.setdefault('http_headers', {}).update(headers)
268
fb8e402a 269 return {
270 'id': video_id,
a1ddaa89 271 'title': video_data.get('title'),
fb8e402a 272 'description': video_data.get('description'),
273 'duration': int_or_none(video_data.get('duration')),
e74a3c6d 274 'timestamp': int_or_none(traverse_obj(video_data, 'broadcastDate', 'startDate')),
fb8e402a 275 'formats': formats,
b6a35ad8 276 'subtitles': subs,
85cd69ad
RA
277 'channel': video_data.get('channelName'),
278 'channel_id': video_data.get('channelId'),
279 'series': video_data.get('showName'),
280 'season': video_data.get('seasonName'),
281 'season_number': int_or_none(video_data.get('seasonNo')),
282 'season_id': video_data.get('seasonId'),
a1ddaa89 283 'episode': video_data.get('title'),
85cd69ad 284 'episode_number': int_or_none(video_data.get('episodeNo')),
fb8e402a 285 }
477c97f8
AV
286
287
a1ddaa89 288class HotStarPrefixIE(InfoExtractor):
289 """ The "hotstar:" prefix is no longer in use, but this is kept for backward compatibility """
290 IE_DESC = False
291 _VALID_URL = r'hotstar:(?:(?P<type>\w+):)?(?P<id>\d+)$'
292 _TESTS = [{
293 'url': 'hotstar:1000076273',
294 'only_matching': True,
295 }, {
db6fa696 296 'url': 'hotstar:movies:1260009879',
a1ddaa89 297 'info_dict': {
db6fa696 298 'id': '1260009879',
a1ddaa89 299 'ext': 'mp4',
db6fa696 300 'title': 'Nuvvu Naaku Nachav',
301 'description': 'md5:d43701b1314e6f8233ce33523c043b7d',
302 'timestamp': 1567525674,
303 'upload_date': '20190903',
304 'duration': 10787,
305 'episode': 'Nuvvu Naaku Nachav',
a1ddaa89 306 },
307 }, {
308 'url': 'hotstar:episode:1000234847',
309 'only_matching': True,
310 }, {
311 # contentData
312 'url': 'hotstar:sports:1260065956',
313 'only_matching': True,
314 }, {
315 # contentData
316 'url': 'hotstar:sports:1260066104',
317 'only_matching': True,
318 }]
319
320 def _real_extract(self, url):
321 video_id, video_type = self._match_valid_url(url).group('id', 'type')
322 return self.url_result(HotStarIE._video_url(video_id, video_type), HotStarIE, video_id)
323
324
909191de 325class HotStarPlaylistIE(HotStarBaseIE):
477c97f8 326 IE_NAME = 'hotstar:playlist'
7f8ddebb 327 _VALID_URL = r'https?://(?:www\.)?hotstar\.com(?:/in)?/(?:tv|shows)(?:/[^/]+){2}/list/[^/]+/t-(?P<id>\w+)'
477c97f8 328 _TESTS = [{
85cd69ad 329 'url': 'https://www.hotstar.com/tv/savdhaan-india/s-26/list/popular-clips/t-3_2_26',
477c97f8 330 'info_dict': {
85cd69ad 331 'id': '3_2_26',
477c97f8 332 },
85cd69ad 333 'playlist_mincount': 20,
7f8ddebb 334 }, {
335 'url': 'https://www.hotstar.com/shows/savdhaan-india/s-26/list/popular-clips/t-3_2_26',
336 'only_matching': True,
477c97f8 337 }, {
85cd69ad 338 'url': 'https://www.hotstar.com/tv/savdhaan-india/s-26/list/extras/t-2480',
477c97f8 339 'only_matching': True,
db6fa696 340 }, {
341 'url': 'https://www.hotstar.com/in/tv/karthika-deepam/15457/list/popular-clips/t-3_2_1272',
342 'only_matching': True,
477c97f8 343 }]
477c97f8
AV
344
345 def _real_extract(self, url):
fad689c7 346 id_ = self._match_id(url)
347 return self.playlist_result(
348 self._playlist_entries('tray/find', id_, query={'tas': 10000, 'uqId': id_}), id_)
6e639032
A
349
350
db6fa696 351class HotStarSeasonIE(HotStarBaseIE):
352 IE_NAME = 'hotstar:season'
7f8ddebb 353 _VALID_URL = r'(?P<url>https?://(?:www\.)?hotstar\.com(?:/in)?/(?:tv|shows)/[^/]+/\w+)/seasons/[^/]+/ss-(?P<id>\w+)'
db6fa696 354 _TESTS = [{
355 'url': 'https://www.hotstar.com/tv/radhakrishn/1260000646/seasons/season-2/ss-8028',
356 'info_dict': {
357 'id': '8028',
358 },
359 'playlist_mincount': 35,
360 }, {
361 'url': 'https://www.hotstar.com/in/tv/ishqbaaz/9567/seasons/season-2/ss-4357',
362 'info_dict': {
363 'id': '4357',
364 },
365 'playlist_mincount': 30,
366 }, {
367 'url': 'https://www.hotstar.com/in/tv/bigg-boss/14714/seasons/season-4/ss-8208/',
368 'info_dict': {
369 'id': '8208',
370 },
371 'playlist_mincount': 19,
7f8ddebb 372 }, {
373 'url': 'https://www.hotstar.com/in/shows/bigg-boss/14714/seasons/season-4/ss-8208/',
374 'only_matching': True,
db6fa696 375 }]
376
377 def _real_extract(self, url):
378 url, season_id = self._match_valid_url(url).groups()
fad689c7 379 return self.playlist_result(self._playlist_entries(
380 'season/asset', season_id, url, query={'tao': 0, 'tas': 0, 'size': 10000, 'id': season_id}), season_id)
db6fa696 381
382
6e639032
A
383class HotStarSeriesIE(HotStarBaseIE):
384 IE_NAME = 'hotstar:series'
7f8ddebb 385 _VALID_URL = r'(?P<url>https?://(?:www\.)?hotstar\.com(?:/in)?/(?:tv|shows)/[^/]+/(?P<id>\d+))/?(?:[#?]|$)'
6e639032
A
386 _TESTS = [{
387 'url': 'https://www.hotstar.com/in/tv/radhakrishn/1260000646',
388 'info_dict': {
389 'id': '1260000646',
390 },
391 'playlist_mincount': 690,
392 }, {
393 'url': 'https://www.hotstar.com/tv/dancee-/1260050431',
394 'info_dict': {
395 'id': '1260050431',
396 },
397 'playlist_mincount': 43,
8242bf22
A
398 }, {
399 'url': 'https://www.hotstar.com/in/tv/mahabharat/435/',
400 'info_dict': {
401 'id': '435',
402 },
db6fa696 403 'playlist_mincount': 267,
7f8ddebb 404 }, {
405 'url': 'https://www.hotstar.com/in/shows/anupama/1260022017/',
406 'info_dict': {
407 'id': '1260022017',
408 },
409 'playlist_mincount': 940,
6e639032
A
410 }]
411
412 def _real_extract(self, url):
81bcd43a 413 url, series_id = self._match_valid_url(url).groups()
fad689c7 414 id_ = self._call_api_v1(
415 'show/detail', series_id, query={'contentId': series_id})['body']['results']['item']['id']
416
417 return self.playlist_result(self._playlist_entries(
418 'tray/g/1/items', series_id, url, query={'tao': 0, 'tas': 10000, 'etid': 0, 'eid': id_}), series_id)