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.

90 lines
3.4 KiB

  1. from __future__ import unicode_literals
  2. import os.path
  3. import re
  4. from .fragment import FragmentFD
  5. from .external import FFmpegFD
  6. from ..compat import compat_urlparse
  7. from ..utils import (
  8. encodeFilename,
  9. sanitize_open,
  10. )
  11. class HlsFD(FragmentFD):
  12. """ A limited implementation that does not require ffmpeg """
  13. FD_NAME = 'hlsnative'
  14. @staticmethod
  15. def can_download(manifest):
  16. UNSUPPORTED_FEATURES = (
  17. r'#EXT-X-KEY:METHOD=(?!NONE)', # encrypted streams [1]
  18. r'#EXT-X-BYTERANGE', # playlists composed of byte ranges of media files [2]
  19. # Live streams heuristic does not always work (e.g. geo restricted to Germany
  20. # 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)
  21. # r'#EXT-X-MEDIA-SEQUENCE:(?!0$)', # live streams [3]
  22. r'#EXT-X-PLAYLIST-TYPE:EVENT', # media segments may be appended to the end of
  23. # event media playlists [4]
  24. # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.4
  25. # 2. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.2
  26. # 3. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.2
  27. # 4. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.5
  28. )
  29. return all(not re.search(feature, manifest) for feature in UNSUPPORTED_FEATURES)
  30. def real_download(self, filename, info_dict):
  31. man_url = info_dict['url']
  32. self.to_screen('[%s] Downloading m3u8 manifest' % self.FD_NAME)
  33. manifest = self.ydl.urlopen(man_url).read()
  34. s = manifest.decode('utf-8', 'ignore')
  35. if not self.can_download(s):
  36. self.report_warning(
  37. 'hlsnative has detected features it does not support, '
  38. 'extraction will be delegated to ffmpeg')
  39. fd = FFmpegFD(self.ydl, self.params)
  40. for ph in self._progress_hooks:
  41. fd.add_progress_hook(ph)
  42. return fd.real_download(filename, info_dict)
  43. fragment_urls = []
  44. for line in s.splitlines():
  45. line = line.strip()
  46. if line and not line.startswith('#'):
  47. segment_url = (
  48. line
  49. if re.match(r'^https?://', line)
  50. else compat_urlparse.urljoin(man_url, line))
  51. fragment_urls.append(segment_url)
  52. # We only download the first fragment during the test
  53. if self.params.get('test', False):
  54. break
  55. ctx = {
  56. 'filename': filename,
  57. 'total_frags': len(fragment_urls),
  58. }
  59. self._prepare_and_start_frag_download(ctx)
  60. frags_filenames = []
  61. for i, frag_url in enumerate(fragment_urls):
  62. frag_filename = '%s-Frag%d' % (ctx['tmpfilename'], i)
  63. success = ctx['dl'].download(frag_filename, {'url': frag_url})
  64. if not success:
  65. return False
  66. down, frag_sanitized = sanitize_open(frag_filename, 'rb')
  67. ctx['dest_stream'].write(down.read())
  68. down.close()
  69. frags_filenames.append(frag_sanitized)
  70. self._finish_frag_download(ctx)
  71. for frag_file in frags_filenames:
  72. os.remove(encodeFilename(frag_file))
  73. return True