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.

142 lines
5.2 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. determine_ext,
  6. js_to_json,
  7. mimetype2ext,
  8. )
  9. class ThreeQSDNIE(InfoExtractor):
  10. IE_NAME = '3qsdn'
  11. IE_DESC = '3Q SDN'
  12. _VALID_URL = r'https?://playout\.3qsdn\.com/(?P<id>[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'
  13. _TESTS = [{
  14. # ondemand from http://www.philharmonie.tv/veranstaltung/26/
  15. 'url': 'http://playout.3qsdn.com/0280d6b9-1215-11e6-b427-0cc47a188158?protocol=http',
  16. 'md5': 'ab040e37bcfa2e0c079f92cb1dd7f6cd',
  17. 'info_dict': {
  18. 'id': '0280d6b9-1215-11e6-b427-0cc47a188158',
  19. 'ext': 'mp4',
  20. 'title': '0280d6b9-1215-11e6-b427-0cc47a188158',
  21. 'is_live': False,
  22. },
  23. 'expected_warnings': ['Failed to download MPD manifest', 'Failed to parse JSON'],
  24. }, {
  25. # live video stream
  26. 'url': 'https://playout.3qsdn.com/d755d94b-4ab9-11e3-9162-0025907ad44f?js=true',
  27. 'info_dict': {
  28. 'id': 'd755d94b-4ab9-11e3-9162-0025907ad44f',
  29. 'ext': 'mp4',
  30. 'title': 're:^d755d94b-4ab9-11e3-9162-0025907ad44f [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
  31. 'is_live': True,
  32. },
  33. 'params': {
  34. 'skip_download': True, # m3u8 downloads
  35. },
  36. 'expected_warnings': ['Failed to download MPD manifest'],
  37. }, {
  38. # live audio stream
  39. 'url': 'http://playout.3qsdn.com/9edf36e0-6bf2-11e2-a16a-9acf09e2db48',
  40. 'only_matching': True,
  41. }, {
  42. # live audio stream with some 404 URLs
  43. 'url': 'http://playout.3qsdn.com/ac5c3186-777a-11e2-9c30-9acf09e2db48',
  44. 'only_matching': True,
  45. }, {
  46. # geo restricted with 'This content is not available in your country'
  47. 'url': 'http://playout.3qsdn.com/d63a3ffe-75e8-11e2-9c30-9acf09e2db48',
  48. 'only_matching': True,
  49. }, {
  50. # geo restricted with 'playout.3qsdn.com/forbidden'
  51. 'url': 'http://playout.3qsdn.com/8e330f26-6ae2-11e2-a16a-9acf09e2db48',
  52. 'only_matching': True,
  53. }, {
  54. # live video with rtmp link
  55. 'url': 'https://playout.3qsdn.com/6092bb9e-8f72-11e4-a173-002590c750be',
  56. 'only_matching': True,
  57. }]
  58. @staticmethod
  59. def _extract_url(webpage):
  60. mobj = re.search(
  61. r'<iframe[^>]+\b(?:data-)?src=(["\'])(?P<url>%s.*?)\1' % ThreeQSDNIE._VALID_URL, webpage)
  62. if mobj:
  63. return mobj.group('url')
  64. def _real_extract(self, url):
  65. video_id = self._match_id(url)
  66. js = self._download_webpage(
  67. 'http://playout.3qsdn.com/%s' % video_id, video_id,
  68. query={'js': 'true'})
  69. if any(p in js for p in (
  70. '>This content is not available in your country',
  71. 'playout.3qsdn.com/forbidden')):
  72. self.raise_geo_restricted()
  73. stream_content = self._search_regex(
  74. r'streamContent\s*:\s*(["\'])(?P<content>.+?)\1', js,
  75. 'stream content', default='demand', group='content')
  76. live = stream_content == 'live'
  77. stream_type = self._search_regex(
  78. r'streamType\s*:\s*(["\'])(?P<type>audio|video)\1', js,
  79. 'stream type', default='video', group='type')
  80. formats = []
  81. urls = set()
  82. def extract_formats(item_url, item={}):
  83. if not item_url or item_url in urls:
  84. return
  85. urls.add(item_url)
  86. ext = mimetype2ext(item.get('type')) or determine_ext(item_url, default_ext=None)
  87. if ext == 'mpd':
  88. formats.extend(self._extract_mpd_formats(
  89. item_url, video_id, mpd_id='mpd', fatal=False))
  90. elif ext == 'm3u8':
  91. formats.extend(self._extract_m3u8_formats(
  92. item_url, video_id, 'mp4',
  93. entry_protocol='m3u8' if live else 'm3u8_native',
  94. m3u8_id='hls', fatal=False))
  95. elif ext == 'f4m':
  96. formats.extend(self._extract_f4m_formats(
  97. item_url, video_id, f4m_id='hds', fatal=False))
  98. else:
  99. if not self._is_valid_url(item_url, video_id):
  100. return
  101. formats.append({
  102. 'url': item_url,
  103. 'format_id': item.get('quality'),
  104. 'ext': 'mp4' if item_url.startswith('rtsp') else ext,
  105. 'vcodec': 'none' if stream_type == 'audio' else None,
  106. })
  107. for item_js in re.findall(r'({[^{]*?\b(?:src|source)\s*:\s*["\'].+?})', js):
  108. f = self._parse_json(
  109. item_js, video_id, transform_source=js_to_json, fatal=False)
  110. if not f:
  111. continue
  112. extract_formats(f.get('src'), f)
  113. # More relaxed version to collect additional URLs and acting
  114. # as a future-proof fallback
  115. for _, src in re.findall(r'\b(?:src|source)\s*:\s*(["\'])((?:https?|rtsp)://.+?)\1', js):
  116. extract_formats(src)
  117. self._sort_formats(formats)
  118. title = self._live_title(video_id) if live else video_id
  119. return {
  120. 'id': video_id,
  121. 'title': title,
  122. 'is_live': live,
  123. 'formats': formats,
  124. }