]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/hidive.py
[extractor/generic] Remove HEAD request
[yt-dlp.git] / yt_dlp / extractor / hidive.py
CommitLineData
f2cad2e4 1import re
62f49dd3 2
62f49dd3 3from .common import InfoExtractor
62f49dd3
S
4from ..utils import (
5 ExtractorError,
6 int_or_none,
a8cb7eca 7 try_get,
3052a30d 8 url_or_none,
62f49dd3
S
9 urlencode_postdata,
10)
11
12
13class HiDiveIE(InfoExtractor):
705e7c20 14 _VALID_URL = r'https?://(?:www\.)?hidive\.com/stream/(?P<id>(?P<title>[^/]+)/(?P<key>[^/?#&]+))'
62f49dd3
S
15 # Using X-Forwarded-For results in 403 HTTP error for HLS fragments,
16 # so disabling geo bypass completely
17 _GEO_BYPASS = False
e8e58c22 18 _NETRC_MACHINE = 'hidive'
e8e58c22 19 _LOGIN_URL = 'https://www.hidive.com/account/login'
62f49dd3
S
20
21 _TESTS = [{
22 'url': 'https://www.hidive.com/stream/the-comic-artist-and-his-assistants/s01e001',
23 'info_dict': {
24 'id': 'the-comic-artist-and-his-assistants/s01e001',
25 'ext': 'mp4',
26 'title': 'the-comic-artist-and-his-assistants/s01e001',
27 'series': 'the-comic-artist-and-his-assistants',
28 'season_number': 1,
29 'episode_number': 1,
30 },
31 'params': {
32 'skip_download': True,
62f49dd3 33 },
e8e58c22 34 'skip': 'Requires Authentication',
62f49dd3
S
35 }]
36
52efa4b3 37 def _perform_login(self, username, password):
e8e58c22
RA
38 webpage = self._download_webpage(self._LOGIN_URL, None)
39 form = self._search_regex(
40 r'(?s)<form[^>]+action="/account/login"[^>]*>(.+?)</form>',
41 webpage, 'login form')
42 data = self._hidden_inputs(form)
43 data.update({
52efa4b3 44 'Email': username,
e8e58c22
RA
45 'Password': password,
46 })
47 self._download_webpage(
48 self._LOGIN_URL, None, 'Logging in', data=urlencode_postdata(data))
e8e58c22 49
f2cad2e4 50 def _call_api(self, video_id, title, key, data={}, **kwargs):
51 data = {
52 **data,
53 'Title': title,
54 'Key': key,
55 'PlayerId': 'f4f895ce1ca713ba263b91caeb1daa2d08904783',
56 }
57 return self._download_json(
58 'https://www.hidive.com/play/settings', video_id,
59 data=urlencode_postdata(data), **kwargs) or {}
60
61 def _extract_subtitles_from_rendition(self, rendition, subtitles, parsed_urls):
62 for cc_file in rendition.get('ccFiles', []):
63 cc_url = url_or_none(try_get(cc_file, lambda x: x[2]))
64 # name is used since we cant distinguish subs with same language code
65 cc_lang = try_get(cc_file, (lambda x: x[1].replace(' ', '-').lower(), lambda x: x[0]), str)
66 if cc_url not in parsed_urls and cc_lang:
67 parsed_urls.add(cc_url)
68 subtitles.setdefault(cc_lang, []).append({'url': cc_url})
69
e8f726a5 70 def _get_subtitles(self, url, video_id, title, key, parsed_urls):
f2cad2e4 71 webpage = self._download_webpage(url, video_id, fatal=False) or ''
e8f726a5 72 subtitles = {}
f2cad2e4 73 for caption in set(re.findall(r'data-captions=\"([^\"]+)\"', webpage)):
74 renditions = self._call_api(
75 video_id, title, key, {'Captions': caption}, fatal=False,
76 note=f'Downloading {caption} subtitle information').get('renditions') or {}
77 for rendition_id, rendition in renditions.items():
78 self._extract_subtitles_from_rendition(rendition, subtitles, parsed_urls)
79 return subtitles
80
62f49dd3 81 def _real_extract(self, url):
705e7c20 82 video_id, title, key = self._match_valid_url(url).group('id', 'title', 'key')
f2cad2e4 83 settings = self._call_api(video_id, title, key)
62f49dd3 84
705e7c20 85 restriction = settings.get('restrictionReason')
86 if restriction == 'RegionRestricted':
87 self.raise_geo_restricted()
88 if restriction and restriction != 'None':
89 raise ExtractorError(
90 '%s said: %s' % (self.IE_NAME, restriction), expected=True)
62f49dd3 91
e8f726a5 92 formats, parsed_urls = [], {None}
705e7c20 93 for rendition_id, rendition in settings['renditions'].items():
94 audio, version, extra = rendition_id.split('_')
95 m3u8_url = url_or_none(try_get(rendition, lambda x: x['bitrates']['hls']))
f2cad2e4 96 if m3u8_url not in parsed_urls:
97 parsed_urls.add(m3u8_url)
a8cb7eca 98 frmt = self._extract_m3u8_formats(
705e7c20 99 m3u8_url, video_id, 'mp4', entry_protocol='m3u8_native', m3u8_id=rendition_id, fatal=False)
a8cb7eca
AG
100 for f in frmt:
101 f['language'] = audio
705e7c20 102 f['format_note'] = f'{version}, {extra}'
a8cb7eca 103 formats.extend(frmt)
e8e58c22 104 self._sort_formats(formats)
62f49dd3 105
62f49dd3
S
106 return {
107 'id': video_id,
108 'title': video_id,
b5ae35ee 109 'subtitles': self.extract_subtitles(url, video_id, title, key, parsed_urls),
62f49dd3
S
110 'formats': formats,
111 'series': title,
705e7c20 112 'season_number': int_or_none(
113 self._search_regex(r's(\d+)', key, 'season number', default=None)),
114 'episode_number': int_or_none(
115 self._search_regex(r'e(\d+)', key, 'episode number', default=None)),
a8cb7eca 116 'http_headers': {'Referer': url}
62f49dd3 117 }