You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

181 lines
8.2 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. import binascii
  4. try:
  5. from Crypto.Cipher import AES
  6. can_decrypt_frag = True
  7. except ImportError:
  8. can_decrypt_frag = False
  9. from .fragment import FragmentFD
  10. from .external import FFmpegFD
  11. from ..compat import (
  12. compat_urllib_error,
  13. compat_urlparse,
  14. compat_struct_pack,
  15. )
  16. from ..utils import (
  17. parse_m3u8_attributes,
  18. update_url_query,
  19. )
  20. class HlsFD(FragmentFD):
  21. """ A limited implementation that does not require ffmpeg """
  22. FD_NAME = 'hlsnative'
  23. @staticmethod
  24. def can_download(manifest, info_dict):
  25. UNSUPPORTED_FEATURES = (
  26. r'#EXT-X-KEY:METHOD=(?!NONE|AES-128)', # encrypted streams [1]
  27. # r'#EXT-X-BYTERANGE', # playlists composed of byte ranges of media files [2]
  28. # Live streams heuristic does not always work (e.g. geo restricted to Germany
  29. # 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)
  30. # r'#EXT-X-MEDIA-SEQUENCE:(?!0$)', # live streams [3]
  31. # This heuristic also is not correct since segments may not be appended as well.
  32. # Twitch vods of finished streams have EXT-X-PLAYLIST-TYPE:EVENT despite
  33. # no segments will definitely be appended to the end of the playlist.
  34. # r'#EXT-X-PLAYLIST-TYPE:EVENT', # media segments may be appended to the end of
  35. # # event media playlists [4]
  36. # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.4
  37. # 2. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.2
  38. # 3. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.2
  39. # 4. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.5
  40. )
  41. check_results = [not re.search(feature, manifest) for feature in UNSUPPORTED_FEATURES]
  42. is_aes128_enc = '#EXT-X-KEY:METHOD=AES-128' in manifest
  43. check_results.append(can_decrypt_frag or not is_aes128_enc)
  44. check_results.append(not (is_aes128_enc and r'#EXT-X-BYTERANGE' in manifest))
  45. check_results.append(not info_dict.get('is_live'))
  46. return all(check_results)
  47. def real_download(self, filename, info_dict):
  48. man_url = info_dict['url']
  49. self.to_screen('[%s] Downloading m3u8 manifest' % self.FD_NAME)
  50. manifest = self.ydl.urlopen(self._prepare_url(info_dict, man_url)).read()
  51. s = manifest.decode('utf-8', 'ignore')
  52. if not self.can_download(s, info_dict):
  53. if info_dict.get('extra_param_to_segment_url'):
  54. self.report_error('pycrypto not found. Please install it.')
  55. return False
  56. self.report_warning(
  57. 'hlsnative has detected features it does not support, '
  58. 'extraction will be delegated to ffmpeg')
  59. fd = FFmpegFD(self.ydl, self.params)
  60. for ph in self._progress_hooks:
  61. fd.add_progress_hook(ph)
  62. return fd.real_download(filename, info_dict)
  63. total_frags = 0
  64. for line in s.splitlines():
  65. line = line.strip()
  66. if line and not line.startswith('#'):
  67. total_frags += 1
  68. ctx = {
  69. 'filename': filename,
  70. 'total_frags': total_frags,
  71. }
  72. self._prepare_and_start_frag_download(ctx)
  73. fragment_retries = self.params.get('fragment_retries', 0)
  74. skip_unavailable_fragments = self.params.get('skip_unavailable_fragments', True)
  75. test = self.params.get('test', False)
  76. extra_query = None
  77. extra_param_to_segment_url = info_dict.get('extra_param_to_segment_url')
  78. if extra_param_to_segment_url:
  79. extra_query = compat_urlparse.parse_qs(extra_param_to_segment_url)
  80. i = 0
  81. media_sequence = 0
  82. decrypt_info = {'METHOD': 'NONE'}
  83. byte_range = {}
  84. frag_index = 0
  85. for line in s.splitlines():
  86. line = line.strip()
  87. if line:
  88. if not line.startswith('#'):
  89. frag_index += 1
  90. if frag_index <= ctx['fragment_index']:
  91. continue
  92. frag_url = (
  93. line
  94. if re.match(r'^https?://', line)
  95. else compat_urlparse.urljoin(man_url, line))
  96. if extra_query:
  97. frag_url = update_url_query(frag_url, extra_query)
  98. count = 0
  99. headers = info_dict.get('http_headers', {})
  100. if byte_range:
  101. headers['Range'] = 'bytes=%d-%d' % (byte_range['start'], byte_range['end'])
  102. while count <= fragment_retries:
  103. try:
  104. success, frag_content = self._download_fragment(
  105. ctx, frag_url, info_dict, headers)
  106. if not success:
  107. return False
  108. break
  109. except compat_urllib_error.HTTPError as err:
  110. # Unavailable (possibly temporary) fragments may be served.
  111. # First we try to retry then either skip or abort.
  112. # See https://github.com/rg3/youtube-dl/issues/10165,
  113. # https://github.com/rg3/youtube-dl/issues/10448).
  114. count += 1
  115. if count <= fragment_retries:
  116. self.report_retry_fragment(err, frag_index, count, fragment_retries)
  117. if count > fragment_retries:
  118. if skip_unavailable_fragments:
  119. i += 1
  120. media_sequence += 1
  121. self.report_skip_fragment(frag_index)
  122. continue
  123. self.report_error(
  124. 'giving up after %s fragment retries' % fragment_retries)
  125. return False
  126. if decrypt_info['METHOD'] == 'AES-128':
  127. iv = decrypt_info.get('IV') or compat_struct_pack('>8xq', media_sequence)
  128. decrypt_info['KEY'] = decrypt_info.get('KEY') or self.ydl.urlopen(decrypt_info['URI']).read()
  129. frag_content = AES.new(
  130. decrypt_info['KEY'], AES.MODE_CBC, iv).decrypt(frag_content)
  131. self._append_fragment(ctx, frag_content)
  132. # We only download the first fragment during the test
  133. if test:
  134. break
  135. i += 1
  136. media_sequence += 1
  137. elif line.startswith('#EXT-X-KEY'):
  138. decrypt_url = decrypt_info.get('URI')
  139. decrypt_info = parse_m3u8_attributes(line[11:])
  140. if decrypt_info['METHOD'] == 'AES-128':
  141. if 'IV' in decrypt_info:
  142. decrypt_info['IV'] = binascii.unhexlify(decrypt_info['IV'][2:].zfill(32))
  143. if not re.match(r'^https?://', decrypt_info['URI']):
  144. decrypt_info['URI'] = compat_urlparse.urljoin(
  145. man_url, decrypt_info['URI'])
  146. if extra_query:
  147. decrypt_info['URI'] = update_url_query(decrypt_info['URI'], extra_query)
  148. if decrypt_url != decrypt_info['URI']:
  149. decrypt_info['KEY'] = None
  150. elif line.startswith('#EXT-X-MEDIA-SEQUENCE'):
  151. media_sequence = int(line[22:])
  152. elif line.startswith('#EXT-X-BYTERANGE'):
  153. splitted_byte_range = line[17:].split('@')
  154. sub_range_start = int(splitted_byte_range[1]) if len(splitted_byte_range) == 2 else byte_range['end']
  155. byte_range = {
  156. 'start': sub_range_start,
  157. 'end': sub_range_start + int(splitted_byte_range[0]),
  158. }
  159. self._finish_frag_download(ctx)
  160. return True