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.

111 lines
4.1 KiB

  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import (
  5. compat_parse_qs,
  6. compat_urllib_request,
  7. )
  8. from ..utils import (
  9. ExtractorError,
  10. )
  11. class ScreencastIE(InfoExtractor):
  12. _VALID_URL = r'https?://www\.screencast\.com/t/(?P<id>[a-zA-Z0-9]+)'
  13. _TESTS = [{
  14. 'url': 'http://www.screencast.com/t/3ZEjQXlT',
  15. 'md5': '917df1c13798a3e96211dd1561fded83',
  16. 'info_dict': {
  17. 'id': '3ZEjQXlT',
  18. 'ext': 'm4v',
  19. 'title': 'Color Measurement with Ocean Optics Spectrometers',
  20. 'description': 'md5:240369cde69d8bed61349a199c5fb153',
  21. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  22. }
  23. }, {
  24. 'url': 'http://www.screencast.com/t/V2uXehPJa1ZI',
  25. 'md5': 'e8e4b375a7660a9e7e35c33973410d34',
  26. 'info_dict': {
  27. 'id': 'V2uXehPJa1ZI',
  28. 'ext': 'mov',
  29. 'title': 'The Amadeus Spectrometer',
  30. 'description': 're:^In this video, our friends at.*To learn more about Amadeus, visit',
  31. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  32. }
  33. }, {
  34. 'url': 'http://www.screencast.com/t/aAB3iowa',
  35. 'md5': 'dedb2734ed00c9755761ccaee88527cd',
  36. 'info_dict': {
  37. 'id': 'aAB3iowa',
  38. 'ext': 'mp4',
  39. 'title': 'Google Earth Export',
  40. 'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.',
  41. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  42. }
  43. }, {
  44. 'url': 'http://www.screencast.com/t/X3ddTrYh',
  45. 'md5': '669ee55ff9c51988b4ebc0877cc8b159',
  46. 'info_dict': {
  47. 'id': 'X3ddTrYh',
  48. 'ext': 'wmv',
  49. 'title': 'Toolkit 6 User Group Webinar (2014-03-04) - Default Judgment and First Impression',
  50. 'description': 'md5:7b9f393bc92af02326a5c5889639eab0',
  51. 'thumbnail': 're:^https?://.*\.(?:gif|jpg)$',
  52. }
  53. },
  54. ]
  55. def _real_extract(self, url):
  56. video_id = self._match_id(url)
  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. }