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.

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