wistia.py 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. ExtractorError,
  6. int_or_none,
  7. float_or_none,
  8. unescapeHTML,
  9. )
  10. class WistiaIE(InfoExtractor):
  11. _VALID_URL = r'(?:wistia:|https?://(?:fast\.)?wistia\.(?:net|com)/embed/(?:iframe|medias)/)(?P<id>[a-z0-9]{10})'
  12. _EMBED_BASE_URL = 'http://fast.wistia.com/embed/'
  13. _TESTS = [{
  14. 'url': 'http://fast.wistia.net/embed/iframe/sh7fpupwlt',
  15. 'md5': 'cafeb56ec0c53c18c97405eecb3133df',
  16. 'info_dict': {
  17. 'id': 'sh7fpupwlt',
  18. 'ext': 'mov',
  19. 'title': 'Being Resourceful',
  20. 'description': 'a Clients From Hell Video Series video from worldwidewebhosting',
  21. 'upload_date': '20131204',
  22. 'timestamp': 1386185018,
  23. 'duration': 117,
  24. },
  25. }, {
  26. 'url': 'wistia:sh7fpupwlt',
  27. 'only_matching': True,
  28. }, {
  29. # with hls video
  30. 'url': 'wistia:807fafadvk',
  31. 'only_matching': True,
  32. }, {
  33. 'url': 'http://fast.wistia.com/embed/iframe/sh7fpupwlt',
  34. 'only_matching': True,
  35. }, {
  36. 'url': 'http://fast.wistia.net/embed/medias/sh7fpupwlt.json',
  37. 'only_matching': True,
  38. }]
  39. # https://wistia.com/support/embed-and-share/video-on-your-website
  40. @staticmethod
  41. def _extract_url(webpage):
  42. match = re.search(
  43. r'<(?:meta[^>]+?content|(?:iframe|script)[^>]+?src)=["\'](?P<url>(?:https?:)?//(?:fast\.)?wistia\.(?:net|com)/embed/(?:iframe|medias)/[a-z0-9]{10})', webpage)
  44. if match:
  45. return unescapeHTML(match.group('url'))
  46. match = re.search(
  47. r'''(?sx)
  48. <script[^>]+src=(["'])(?:https?:)?//fast\.wistia\.com/assets/external/E-v1\.js\1[^>]*>.*?
  49. <div[^>]+class=(["']).*?\bwistia_async_(?P<id>[a-z0-9]{10})\b.*?\2
  50. ''', webpage)
  51. if match:
  52. return 'wistia:%s' % match.group('id')
  53. match = re.search(r'(?:data-wistia-?id=["\']|Wistia\.embed\(["\']|id=["\']wistia_)(?P<id>[a-z0-9]{10})', webpage)
  54. if match:
  55. return 'wistia:%s' % match.group('id')
  56. def _real_extract(self, url):
  57. video_id = self._match_id(url)
  58. data_json = self._download_json(
  59. self._EMBED_BASE_URL + 'medias/%s.json' % video_id, video_id,
  60. # Some videos require this.
  61. headers={
  62. 'Referer': url if url.startswith('http') else self._EMBED_BASE_URL + 'iframe/' + video_id,
  63. })
  64. if data_json.get('error'):
  65. raise ExtractorError(
  66. 'Error while getting the playlist', expected=True)
  67. data = data_json['media']
  68. title = data['name']
  69. formats = []
  70. thumbnails = []
  71. for a in data['assets']:
  72. aurl = a.get('url')
  73. if not aurl:
  74. continue
  75. astatus = a.get('status')
  76. atype = a.get('type')
  77. if (astatus is not None and astatus != 2) or atype in ('preview', 'storyboard'):
  78. continue
  79. elif atype in ('still', 'still_image'):
  80. thumbnails.append({
  81. 'url': aurl,
  82. 'width': int_or_none(a.get('width')),
  83. 'height': int_or_none(a.get('height')),
  84. 'filesize': int_or_none(a.get('size')),
  85. })
  86. else:
  87. aext = a.get('ext')
  88. display_name = a.get('display_name')
  89. format_id = atype
  90. if atype and atype.endswith('_video') and display_name:
  91. format_id = '%s-%s' % (atype[:-6], display_name)
  92. f = {
  93. 'format_id': format_id,
  94. 'url': aurl,
  95. 'tbr': int_or_none(a.get('bitrate')) or None,
  96. 'preference': 1 if atype == 'original' else None,
  97. }
  98. if display_name == 'Audio':
  99. f.update({
  100. 'vcodec': 'none',
  101. })
  102. else:
  103. f.update({
  104. 'width': int_or_none(a.get('width')),
  105. 'height': int_or_none(a.get('height')),
  106. 'vcodec': a.get('codec'),
  107. })
  108. if a.get('container') == 'm3u8' or aext == 'm3u8':
  109. ts_f = f.copy()
  110. ts_f.update({
  111. 'ext': 'ts',
  112. 'format_id': f['format_id'].replace('hls-', 'ts-'),
  113. 'url': f['url'].replace('.bin', '.ts'),
  114. })
  115. formats.append(ts_f)
  116. f.update({
  117. 'ext': 'mp4',
  118. 'protocol': 'm3u8_native',
  119. })
  120. else:
  121. f.update({
  122. 'container': a.get('container'),
  123. 'ext': aext,
  124. 'filesize': int_or_none(a.get('size')),
  125. })
  126. formats.append(f)
  127. self._sort_formats(formats)
  128. subtitles = {}
  129. for caption in data.get('captions', []):
  130. language = caption.get('language')
  131. if not language:
  132. continue
  133. subtitles[language] = [{
  134. 'url': self._EMBED_BASE_URL + 'captions/' + video_id + '.vtt?language=' + language,
  135. }]
  136. return {
  137. 'id': video_id,
  138. 'title': title,
  139. 'description': data.get('seoDescription'),
  140. 'formats': formats,
  141. 'thumbnails': thumbnails,
  142. 'duration': float_or_none(data.get('duration')),
  143. 'timestamp': int_or_none(data.get('createdAt')),
  144. 'subtitles': subtitles,
  145. }