wistia.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. _API_URL = 'http://fast.wistia.com/embed/medias/%s.json'
  13. _IFRAME_URL = 'http://fast.wistia.net/embed/iframe/%s'
  14. _TESTS = [{
  15. 'url': 'http://fast.wistia.net/embed/iframe/sh7fpupwlt',
  16. 'md5': 'cafeb56ec0c53c18c97405eecb3133df',
  17. 'info_dict': {
  18. 'id': 'sh7fpupwlt',
  19. 'ext': 'mov',
  20. 'title': 'Being Resourceful',
  21. 'description': 'a Clients From Hell Video Series video from worldwidewebhosting',
  22. 'upload_date': '20131204',
  23. 'timestamp': 1386185018,
  24. 'duration': 117,
  25. },
  26. }, {
  27. 'url': 'wistia:sh7fpupwlt',
  28. 'only_matching': True,
  29. }, {
  30. # with hls video
  31. 'url': 'wistia:807fafadvk',
  32. 'only_matching': True,
  33. }, {
  34. 'url': 'http://fast.wistia.com/embed/iframe/sh7fpupwlt',
  35. 'only_matching': True,
  36. }, {
  37. 'url': 'http://fast.wistia.net/embed/medias/sh7fpupwlt.json',
  38. 'only_matching': True,
  39. }]
  40. # https://wistia.com/support/embed-and-share/video-on-your-website
  41. @staticmethod
  42. def _extract_url(webpage):
  43. match = re.search(
  44. r'<(?:meta[^>]+?content|(?:iframe|script)[^>]+?src)=["\'](?P<url>(?:https?:)?//(?:fast\.)?wistia\.(?:net|com)/embed/(?:iframe|medias)/[a-z0-9]{10})', webpage)
  45. if match:
  46. return unescapeHTML(match.group('url'))
  47. match = re.search(
  48. r'''(?sx)
  49. <script[^>]+src=(["'])(?:https?:)?//fast\.wistia\.com/assets/external/E-v1\.js\1[^>]*>.*?
  50. <div[^>]+class=(["']).*?\bwistia_async_(?P<id>[a-z0-9]{10})\b.*?\2
  51. ''', webpage)
  52. if match:
  53. return 'wistia:%s' % match.group('id')
  54. match = re.search(r'(?:data-wistia-?id=["\']|Wistia\.embed\(["\']|id=["\']wistia_)(?P<id>[a-z0-9]{10})', webpage)
  55. if match:
  56. return 'wistia:%s' % match.group('id')
  57. def _real_extract(self, url):
  58. video_id = self._match_id(url)
  59. data_json = self._download_json(
  60. self._API_URL % video_id, video_id,
  61. # Some videos require this.
  62. headers={
  63. 'Referer': url if url.startswith('http') else self._IFRAME_URL % video_id,
  64. })
  65. if data_json.get('error'):
  66. raise ExtractorError(
  67. 'Error while getting the playlist', expected=True)
  68. data = data_json['media']
  69. title = data['name']
  70. formats = []
  71. thumbnails = []
  72. for a in data['assets']:
  73. aurl = a.get('url')
  74. if not aurl:
  75. continue
  76. astatus = a.get('status')
  77. atype = a.get('type')
  78. if (astatus is not None and astatus != 2) or atype in ('preview', 'storyboard'):
  79. continue
  80. elif atype in ('still', 'still_image'):
  81. thumbnails.append({
  82. 'url': aurl,
  83. 'width': int_or_none(a.get('width')),
  84. 'height': int_or_none(a.get('height')),
  85. })
  86. else:
  87. aext = a.get('ext')
  88. is_m3u8 = a.get('container') == 'm3u8' or aext == 'm3u8'
  89. formats.append({
  90. 'format_id': atype,
  91. 'url': aurl,
  92. 'tbr': int_or_none(a.get('bitrate')),
  93. 'vbr': int_or_none(a.get('opt_vbitrate')),
  94. 'width': int_or_none(a.get('width')),
  95. 'height': int_or_none(a.get('height')),
  96. 'filesize': int_or_none(a.get('size')),
  97. 'vcodec': a.get('codec'),
  98. 'container': a.get('container'),
  99. 'ext': 'mp4' if is_m3u8 else aext,
  100. 'protocol': 'm3u8' if is_m3u8 else None,
  101. 'preference': 1 if atype == 'original' else None,
  102. })
  103. self._sort_formats(formats)
  104. return {
  105. 'id': video_id,
  106. 'title': title,
  107. 'description': data.get('seoDescription'),
  108. 'formats': formats,
  109. 'thumbnails': thumbnails,
  110. 'duration': float_or_none(data.get('duration')),
  111. 'timestamp': int_or_none(data.get('createdAt')),
  112. }