]> jfr.im git - yt-dlp.git/blame - yt_dlp/downloader/hls.py
[downloader] Pass `info_dict` to `progress_hook`s
[yt-dlp.git] / yt_dlp / downloader / hls.py
CommitLineData
f0b5d6af
PH
1from __future__ import unicode_literals
2
f0b5d6af 3import re
4a2f19ab 4import io
e154c651 5import binascii
3bc2ddcc 6
5219cb3e 7from ..downloader import _get_real_downloader
4c7853de 8from .fragment import FragmentFD, can_decrypt_frag
0d66bd0e 9from .external import FFmpegFD
f9a5affa 10
e154c651 11from ..compat import (
12 compat_urlparse,
e154c651 13)
1cc79574 14from ..utils import (
e154c651 15 parse_m3u8_attributes,
aaf44a2f 16 update_url_query,
4a2f19ab 17 bug_reports_message,
3bc2ddcc 18)
4a2f19ab 19from .. import webvtt
3bc2ddcc
JMF
20
21
12b84ac8 22class HlsFD(FragmentFD):
0a473f2f 23 """
24 Download segments in a m3u8 manifest. External downloaders can take over
52a8a1e1 25 the fragment downloads by supporting the 'm3u8_frag_urls' protocol and
0a473f2f 26 re-defining 'supports_manifest' function
27 """
f0b5d6af 28
f9a5affa
S
29 FD_NAME = 'hlsnative'
30
0d66bd0e 31 @staticmethod
0a473f2f 32 def can_download(manifest, info_dict, allow_unplayable_formats=False, with_crypto=can_decrypt_frag):
63ad4d43 33 UNSUPPORTED_FEATURES = [
f5974637 34 # r'#EXT-X-BYTERANGE', # playlists composed of byte ranges of media files [2]
1e236d7e 35
c15c47d1
S
36 # Live streams heuristic does not always work (e.g. geo restricted to Germany
37 # http://hls-geo.daserste.de/i/videoportal/Film/c_620000/622873/format,716451,716457,716450,716458,716459,.mp4.csmil/index_4_av.m3u8?null=0)
2937590e 38 # r'#EXT-X-MEDIA-SEQUENCE:(?!0$)', # live streams [3]
1e236d7e
S
39
40 # This heuristic also is not correct since segments may not be appended as well.
633b444f
S
41 # Twitch vods of finished streams have EXT-X-PLAYLIST-TYPE:EVENT despite
42 # no segments will definitely be appended to the end of the playlist.
1e236d7e 43 # r'#EXT-X-PLAYLIST-TYPE:EVENT', # media segments may be appended to the end of
51c4d85c 44 # # event media playlists [4]
b1bb77d7 45 # r'#EXT-X-MAP:', # media initialization [5]
0d66bd0e
S
46 # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.4
47 # 2. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.2
48 # 3. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.2
6104cc29 49 # 4. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.5
29f7c58a 50 # 5. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.5
63ad4d43 51 ]
52 if not allow_unplayable_formats:
53 UNSUPPORTED_FEATURES += [
54 r'#EXT-X-KEY:METHOD=(?!NONE|AES-128)', # encrypted streams [1]
55 ]
0a473f2f 56
57 def check_results():
58 yield not info_dict.get('is_live')
59 is_aes128_enc = '#EXT-X-KEY:METHOD=AES-128' in manifest
60 yield with_crypto or not is_aes128_enc
61 yield not (is_aes128_enc and r'#EXT-X-BYTERANGE' in manifest)
62 for feature in UNSUPPORTED_FEATURES:
63 yield not re.search(feature, manifest)
64 return all(check_results())
0d66bd0e 65
f0b5d6af 66 def real_download(self, filename, info_dict):
f9a5affa
S
67 man_url = info_dict['url']
68 self.to_screen('[%s] Downloading m3u8 manifest' % self.FD_NAME)
69035555 69
c5a49ff0
S
70 urlh = self.ydl.urlopen(self._prepare_url(info_dict, man_url))
71 man_url = urlh.geturl()
72 s = urlh.read().decode('utf-8', 'ignore')
0d66bd0e 73
0a473f2f 74 if not self.can_download(s, info_dict, self.params.get('allow_unplayable_formats')):
c712b16d 75 if info_dict.get('extra_param_to_segment_url') or info_dict.get('_decryption_key_url'):
beb4b92a 76 self.report_error('pycryptodome not found. Please install')
bfa1073e 77 return False
d9524b89 78 if self.can_download(s, info_dict, with_crypto=True):
beb4b92a 79 self.report_warning('pycryptodome is needed to download this file natively')
2bfaf89b 80 fd = FFmpegFD(self.ydl, self.params)
beb4b92a 81 self.report_warning(
82 '%s detected unsupported features; extraction will be delegated to %s' % (self.FD_NAME, fd.get_basename()))
5219cb3e 83 # TODO: Make progress updates work without hooking twice
84 # for ph in self._progress_hooks:
85 # fd.add_progress_hook(ph)
2bfaf89b 86 return fd.real_download(filename, info_dict)
0d66bd0e 87
5dcd8e1d 88 is_webvtt = info_dict['ext'] == 'vtt'
89 if is_webvtt:
90 real_downloader = None # Packing the fragments is not currently supported for external downloader
91 else:
92 real_downloader = _get_real_downloader(info_dict, 'm3u8_frag_urls', self.params, None)
0a473f2f 93 if real_downloader and not real_downloader.supports_manifest(s):
94 real_downloader = None
beb4b92a 95 if real_downloader:
96 self.to_screen(
97 '[%s] Fragment downloads will be delegated to %s' % (self.FD_NAME, real_downloader.get_basename()))
0a473f2f 98
f1ab3b7d 99 def is_ad_fragment_start(s):
3089bc74
S
100 return (s.startswith('#ANVATO-SEGMENT-INFO') and 'type=ad' in s
101 or s.startswith('#UPLYNK-SEGMENT') and s.endswith(',ad'))
74c42d9e 102
f1ab3b7d 103 def is_ad_fragment_end(s):
3089bc74
S
104 return (s.startswith('#ANVATO-SEGMENT-INFO') and 'type=master' in s
105 or s.startswith('#UPLYNK-SEGMENT') and s.endswith(',segment'))
f1ab3b7d 106
d7009caa 107 fragments = []
5219cb3e 108
74c42d9e
S
109 media_frags = 0
110 ad_frags = 0
111 ad_frag_next = False
f0b5d6af
PH
112 for line in s.splitlines():
113 line = line.strip()
74c42d9e
S
114 if not line:
115 continue
116 if line.startswith('#'):
f1ab3b7d 117 if is_ad_fragment_start(line):
a9ee4f6e 118 ad_frag_next = True
f1ab3b7d
RA
119 elif is_ad_fragment_end(line):
120 ad_frag_next = False
74c42d9e
S
121 continue
122 if ad_frag_next:
f1ab3b7d 123 ad_frags += 1
74c42d9e
S
124 continue
125 media_frags += 1
f0b5d6af 126
f9a5affa 127 ctx = {
f0b5d6af 128 'filename': filename,
74c42d9e
S
129 'total_frags': media_frags,
130 'ad_frags': ad_frags,
f9a5affa
S
131 }
132
5219cb3e 133 if real_downloader:
134 self._prepare_external_frag_download(ctx)
135 else:
3ba7740d 136 self._prepare_and_start_frag_download(ctx, info_dict)
f9a5affa 137
4a2f19ab
F
138 extra_state = ctx.setdefault('extra_state', {})
139
310c2ed2 140 format_index = info_dict.get('format_index')
b8079a40 141 extra_query = None
aaf44a2f 142 extra_param_to_segment_url = info_dict.get('extra_param_to_segment_url')
b8079a40
RA
143 if extra_param_to_segment_url:
144 extra_query = compat_urlparse.parse_qs(extra_param_to_segment_url)
e154c651 145 i = 0
146 media_sequence = 0
147 decrypt_info = {'METHOD': 'NONE'}
f5974637 148 byte_range = {}
310c2ed2 149 discontinuity_count = 0
75a24854 150 frag_index = 0
74c42d9e 151 ad_frag_next = False
e154c651 152 for line in s.splitlines():
153 line = line.strip()
154 if line:
155 if not line.startswith('#'):
310c2ed2 156 if format_index and discontinuity_count != format_index:
157 continue
74c42d9e 158 if ad_frag_next:
74c42d9e 159 continue
75a24854 160 frag_index += 1
3e0304fe 161 if frag_index <= ctx['fragment_index']:
75a24854 162 continue
e154c651 163 frag_url = (
164 line
165 if re.match(r'^https?://', line)
166 else compat_urlparse.urljoin(man_url, line))
b8079a40
RA
167 if extra_query:
168 frag_url = update_url_query(frag_url, extra_query)
5219cb3e 169
4cf1e5d2 170 fragments.append({
171 'frag_index': frag_index,
172 'url': frag_url,
173 'decrypt_info': decrypt_info,
174 'byte_range': byte_range,
175 'media_sequence': media_sequence,
176 })
5219cb3e 177
b1bb77d7 178 elif line.startswith('#EXT-X-MAP'):
310c2ed2 179 if format_index and discontinuity_count != format_index:
180 continue
b1bb77d7 181 if frag_index > 0:
182 self.report_error(
beb4b92a 183 'Initialization fragment found after media fragments, unable to download')
b1bb77d7 184 return False
185 frag_index += 1
186 map_info = parse_m3u8_attributes(line[11:])
187 frag_url = (
188 map_info.get('URI')
189 if re.match(r'^https?://', map_info.get('URI'))
190 else compat_urlparse.urljoin(man_url, map_info.get('URI')))
191 if extra_query:
192 frag_url = update_url_query(frag_url, extra_query)
4cf1e5d2 193
194 fragments.append({
195 'frag_index': frag_index,
196 'url': frag_url,
197 'decrypt_info': decrypt_info,
198 'byte_range': byte_range,
199 'media_sequence': media_sequence
200 })
b1bb77d7 201
202 if map_info.get('BYTERANGE'):
203 splitted_byte_range = map_info.get('BYTERANGE').split('@')
204 sub_range_start = int(splitted_byte_range[1]) if len(splitted_byte_range) == 2 else byte_range['end']
205 byte_range = {
206 'start': sub_range_start,
207 'end': sub_range_start + int(splitted_byte_range[0]),
208 }
b1bb77d7 209
210 elif line.startswith('#EXT-X-KEY'):
211 decrypt_url = decrypt_info.get('URI')
212 decrypt_info = parse_m3u8_attributes(line[11:])
213 if decrypt_info['METHOD'] == 'AES-128':
214 if 'IV' in decrypt_info:
215 decrypt_info['IV'] = binascii.unhexlify(decrypt_info['IV'][2:].zfill(32))
216 if not re.match(r'^https?://', decrypt_info['URI']):
217 decrypt_info['URI'] = compat_urlparse.urljoin(
218 man_url, decrypt_info['URI'])
219 if extra_query:
220 decrypt_info['URI'] = update_url_query(decrypt_info['URI'], extra_query)
221 if decrypt_url != decrypt_info['URI']:
222 decrypt_info['KEY'] = None
b1bb77d7 223
224 elif line.startswith('#EXT-X-MEDIA-SEQUENCE'):
225 media_sequence = int(line[22:])
226 elif line.startswith('#EXT-X-BYTERANGE'):
227 splitted_byte_range = line[17:].split('@')
228 sub_range_start = int(splitted_byte_range[1]) if len(splitted_byte_range) == 2 else byte_range['end']
229 byte_range = {
230 'start': sub_range_start,
231 'end': sub_range_start + int(splitted_byte_range[0]),
232 }
233 elif is_ad_fragment_start(line):
234 ad_frag_next = True
235 elif is_ad_fragment_end(line):
236 ad_frag_next = False
310c2ed2 237 elif line.startswith('#EXT-X-DISCONTINUITY'):
238 discontinuity_count += 1
4cf1e5d2 239 i += 1
240 media_sequence += 1
b1bb77d7 241
4cf1e5d2 242 # We only download the first fragment during the test
4c7853de 243 if self.params.get('test', False):
4cf1e5d2 244 fragments = [fragments[0] if fragments else None]
f9a5affa 245
5219cb3e 246 if real_downloader:
247 info_copy = info_dict.copy()
d7009caa 248 info_copy['fragments'] = fragments
5219cb3e 249 fd = real_downloader(self.ydl, self.params)
250 # TODO: Make progress updates work without hooking twice
251 # for ph in self._progress_hooks:
252 # fd.add_progress_hook(ph)
8e897ed2 253 return fd.real_download(filename, info_copy)
333217f4 254
bd4d1ea3 255 if is_webvtt:
256 def pack_fragment(frag_content, frag_index):
257 output = io.StringIO()
258 adjust = 0
259 for block in webvtt.parse_fragment(frag_content):
260 if isinstance(block, webvtt.CueBlock):
261 block.start += adjust
262 block.end += adjust
263
264 dedup_window = extra_state.setdefault('webvtt_dedup_window', [])
265 cue = block.as_json
266
267 # skip the cue if an identical one appears
268 # in the window of potential duplicates
269 # and prune the window of unviable candidates
270 i = 0
271 skip = True
272 while i < len(dedup_window):
273 window_cue = dedup_window[i]
274 if window_cue == cue:
275 break
276 if window_cue['end'] >= cue['start']:
277 i += 1
4a2f19ab 278 continue
bd4d1ea3 279 del dedup_window[i]
280 else:
281 skip = False
282
283 if skip:
284 continue
285
286 # add the cue to the window
287 dedup_window.append(cue)
288 elif isinstance(block, webvtt.Magic):
289 # take care of MPEG PES timestamp overflow
290 if block.mpegts is None:
291 block.mpegts = 0
292 extra_state.setdefault('webvtt_mpegts_adjust', 0)
293 block.mpegts += extra_state['webvtt_mpegts_adjust'] << 33
294 if block.mpegts < extra_state.get('webvtt_mpegts_last', 0):
295 extra_state['webvtt_mpegts_adjust'] += 1
296 block.mpegts += 1 << 33
297 extra_state['webvtt_mpegts_last'] = block.mpegts
298
299 if frag_index == 1:
300 extra_state['webvtt_mpegts'] = block.mpegts or 0
301 extra_state['webvtt_local'] = block.local or 0
302 # XXX: block.local = block.mpegts = None ?
303 else:
304 if block.mpegts is not None and block.local is not None:
305 adjust = (
306 (block.mpegts - extra_state.get('webvtt_mpegts', 0))
307 - (block.local - extra_state.get('webvtt_local', 0))
308 )
309 continue
310 elif isinstance(block, webvtt.HeaderBlock):
311 if frag_index != 1:
312 # XXX: this should probably be silent as well
313 # or verify that all segments contain the same data
314 self.report_warning(bug_reports_message(
315 'Discarding a %s block found in the middle of the stream; '
316 'if the subtitles display incorrectly,'
317 % (type(block).__name__)))
318 continue
319 block.write_into(output)
320
321 return output.getvalue().encode('utf-8')
322 else:
323 pack_fragment = None
324 return self.download_and_append_fragments(ctx, fragments, info_dict, pack_fragment)