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.

112 lines
4.1 KiB

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. ExtractorError,
  7. compat_parse_qs,
  8. compat_urllib_request,
  9. )
  10. class ScreencastIE(InfoExtractor):
  11. _VALID_URL = r'https?://www\.screencast\.com/t/(?P<id>[a-zA-Z0-9]+)'
  12. _TESTS = [{
  13. 'url': 'http://www.screencast.com/t/3ZEjQXlT',
  14. 'md5': '917df1c13798a3e96211dd1561fded83',
  15. 'info_dict': {
  16. 'id': '3ZEjQXlT',
  17. 'ext': 'm4v',
  18. 'title': 'Color Measurement with Ocean Optics Spectrometers',
  19. 'description': 'md5:240369cde69d8bed61349a199c5fb153',
  20. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  21. }
  22. }, {
  23. 'url': 'http://www.screencast.com/t/V2uXehPJa1ZI',
  24. 'md5': 'e8e4b375a7660a9e7e35c33973410d34',
  25. 'info_dict': {
  26. 'id': 'V2uXehPJa1ZI',
  27. 'ext': 'mov',
  28. 'title': 'The Amadeus Spectrometer',
  29. 'description': 're:^In this video, our friends at.*To learn more about Amadeus, visit',
  30. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  31. }
  32. }, {
  33. 'url': 'http://www.screencast.com/t/aAB3iowa',
  34. 'md5': 'dedb2734ed00c9755761ccaee88527cd',
  35. 'info_dict': {
  36. 'id': 'aAB3iowa',
  37. 'ext': 'mp4',
  38. 'title': 'Google Earth Export',
  39. 'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.',
  40. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  41. }
  42. }, {
  43. 'url': 'http://www.screencast.com/t/X3ddTrYh',
  44. 'md5': '669ee55ff9c51988b4ebc0877cc8b159',
  45. 'info_dict': {
  46. 'id': 'X3ddTrYh',
  47. 'ext': 'wmv',
  48. 'title': 'Toolkit 6 User Group Webinar (2014-03-04) - Default Judgment and First Impression',
  49. 'description': 'md5:7b9f393bc92af02326a5c5889639eab0',
  50. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  51. }
  52. },
  53. ]
  54. def _real_extract(self, url):
  55. mobj = re.match(self._VALID_URL, url)
  56. video_id = mobj.group('id')
  57. webpage = self._download_webpage(url, video_id)
  58. video_url = self._html_search_regex(
  59. r'<embed name="Video".*?src="([^"]+)"', webpage,
  60. 'QuickTime embed', default=None)
  61. if video_url is None:
  62. flash_vars_s = self._html_search_regex(
  63. r'<param name="flashVars" value="([^"]+)"', webpage, 'flash vars',
  64. default=None)
  65. if not flash_vars_s:
  66. flash_vars_s = self._html_search_regex(
  67. r'<param name="initParams" value="([^"]+)"', webpage, 'flash vars',
  68. default=None)
  69. if flash_vars_s:
  70. flash_vars_s = flash_vars_s.replace(',', '&')
  71. if flash_vars_s:
  72. flash_vars = compat_parse_qs(flash_vars_s)
  73. video_url_raw = compat_urllib_request.quote(
  74. flash_vars['content'][0])
  75. video_url = video_url_raw.replace('http%3A', 'http:')
  76. if video_url is None:
  77. video_meta = self._html_search_meta(
  78. 'og:video', webpage, default=None)
  79. if video_meta:
  80. video_url = self._search_regex(
  81. r'src=(.*?)(?:$|&)', video_meta,
  82. 'meta tag video URL', default=None)
  83. if video_url is None:
  84. raise ExtractorError('Cannot find video')
  85. title = self._og_search_title(webpage, default=None)
  86. if title is None:
  87. title = self._html_search_regex(
  88. [r'<b>Title:</b> ([^<]*)</div>',
  89. r'class="tabSeperator">></span><span class="tabText">(.*?)<'],
  90. webpage, 'title')
  91. thumbnail = self._og_search_thumbnail(webpage)
  92. description = self._og_search_description(webpage, default=None)
  93. if description is None:
  94. description = self._html_search_meta('description', webpage)
  95. return {
  96. 'id': video_id,
  97. 'url': video_url,
  98. 'title': title,
  99. 'description': description,
  100. 'thumbnail': thumbnail,
  101. }