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.

203 lines
9.0 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. urlh = self.ydl.urlopen(self._prepare_url(info_dict, man_url))
  51. man_url = urlh.geturl()
  52. s = urlh.read().decode('utf-8', 'ignore')
  53. if not self.can_download(s, info_dict):
  54. if info_dict.get('extra_param_to_segment_url'):
  55. self.report_error('pycrypto not found. Please install it.')
  56. return False
  57. self.report_warning(
  58. 'hlsnative has detected features it does not support, '
  59. 'extraction will be delegated to ffmpeg')
  60. fd = FFmpegFD(self.ydl, self.params)
  61. for ph in self._progress_hooks:
  62. fd.add_progress_hook(ph)
  63. return fd.real_download(filename, info_dict)
  64. def anvato_ad(s):
  65. return s.startswith('#ANVATO-SEGMENT-INFO') and 'type=ad' in s
  66. media_frags = 0
  67. ad_frags = 0
  68. ad_frag_next = False
  69. for line in s.splitlines():
  70. line = line.strip()
  71. if not line:
  72. continue
  73. if line.startswith('#'):
  74. if anvato_ad(line):
  75. ad_frags += 1
  76. ad_frag_next = True
  77. continue
  78. if ad_frag_next:
  79. ad_frag_next = False
  80. continue
  81. media_frags += 1
  82. ctx = {
  83. 'filename': filename,
  84. 'total_frags': media_frags,
  85. 'ad_frags': ad_frags,
  86. }
  87. self._prepare_and_start_frag_download(ctx)
  88. fragment_retries = self.params.get('fragment_retries', 0)
  89. skip_unavailable_fragments = self.params.get('skip_unavailable_fragments', True)
  90. test = self.params.get('test', False)
  91. extra_query = None
  92. extra_param_to_segment_url = info_dict.get('extra_param_to_segment_url')
  93. if extra_param_to_segment_url:
  94. extra_query = compat_urlparse.parse_qs(extra_param_to_segment_url)
  95. i = 0
  96. media_sequence = 0
  97. decrypt_info = {'METHOD': 'NONE'}
  98. byte_range = {}
  99. frag_index = 0
  100. ad_frag_next = False
  101. for line in s.splitlines():
  102. line = line.strip()
  103. if line:
  104. if not line.startswith('#'):
  105. if ad_frag_next:
  106. ad_frag_next = False
  107. continue
  108. frag_index += 1
  109. if frag_index <= ctx['fragment_index']:
  110. continue
  111. frag_url = (
  112. line
  113. if re.match(r'^https?://', line)
  114. else compat_urlparse.urljoin(man_url, line))
  115. if extra_query:
  116. frag_url = update_url_query(frag_url, extra_query)
  117. count = 0
  118. headers = info_dict.get('http_headers', {})
  119. if byte_range:
  120. headers['Range'] = 'bytes=%d-%d' % (byte_range['start'], byte_range['end'])
  121. while count <= fragment_retries:
  122. try:
  123. success, frag_content = self._download_fragment(
  124. ctx, frag_url, info_dict, headers)
  125. if not success:
  126. return False
  127. break
  128. except compat_urllib_error.HTTPError as err:
  129. # Unavailable (possibly temporary) fragments may be served.
  130. # First we try to retry then either skip or abort.
  131. # See https://github.com/rg3/youtube-dl/issues/10165,
  132. # https://github.com/rg3/youtube-dl/issues/10448).
  133. count += 1
  134. if count <= fragment_retries:
  135. self.report_retry_fragment(err, frag_index, count, fragment_retries)
  136. if count > fragment_retries:
  137. if skip_unavailable_fragments:
  138. i += 1
  139. media_sequence += 1
  140. self.report_skip_fragment(frag_index)
  141. continue
  142. self.report_error(
  143. 'giving up after %s fragment retries' % fragment_retries)
  144. return False
  145. if decrypt_info['METHOD'] == 'AES-128':
  146. iv = decrypt_info.get('IV') or compat_struct_pack('>8xq', media_sequence)
  147. decrypt_info['KEY'] = decrypt_info.get('KEY') or self.ydl.urlopen(
  148. self._prepare_url(info_dict, decrypt_info['URI'])).read()
  149. frag_content = AES.new(
  150. decrypt_info['KEY'], AES.MODE_CBC, iv).decrypt(frag_content)
  151. self._append_fragment(ctx, frag_content)
  152. # We only download the first fragment during the test
  153. if test:
  154. break
  155. i += 1
  156. media_sequence += 1
  157. elif line.startswith('#EXT-X-KEY'):
  158. decrypt_url = decrypt_info.get('URI')
  159. decrypt_info = parse_m3u8_attributes(line[11:])
  160. if decrypt_info['METHOD'] == 'AES-128':
  161. if 'IV' in decrypt_info:
  162. decrypt_info['IV'] = binascii.unhexlify(decrypt_info['IV'][2:].zfill(32))
  163. if not re.match(r'^https?://', decrypt_info['URI']):
  164. decrypt_info['URI'] = compat_urlparse.urljoin(
  165. man_url, decrypt_info['URI'])
  166. if extra_query:
  167. decrypt_info['URI'] = update_url_query(decrypt_info['URI'], extra_query)
  168. if decrypt_url != decrypt_info['URI']:
  169. decrypt_info['KEY'] = None
  170. elif line.startswith('#EXT-X-MEDIA-SEQUENCE'):
  171. media_sequence = int(line[22:])
  172. elif line.startswith('#EXT-X-BYTERANGE'):
  173. splitted_byte_range = line[17:].split('@')
  174. sub_range_start = int(splitted_byte_range[1]) if len(splitted_byte_range) == 2 else byte_range['end']
  175. byte_range = {
  176. 'start': sub_range_start,
  177. 'end': sub_range_start + int(splitted_byte_range[0]),
  178. }
  179. elif anvato_ad(line):
  180. ad_frag_next = True
  181. self._finish_frag_download(ctx)
  182. return True