3 from .common
import InfoExtractor
4 from ..compat
import compat_parse_qs
5 from ..utils
import ExtractorError
8 class ScreencastIE(InfoExtractor
):
9 _VALID_URL
= r
'https?://(?:www\.)?screencast\.com/t/(?P<id>[a-zA-Z0-9]+)'
11 'url': 'http://www.screencast.com/t/3ZEjQXlT',
12 'md5': '917df1c13798a3e96211dd1561fded83',
16 'title': 'Color Measurement with Ocean Optics Spectrometers',
17 'description': 'md5:240369cde69d8bed61349a199c5fb153',
18 'thumbnail': r
're:^https?://.*\.(?:gif|jpg)$',
21 'url': 'http://www.screencast.com/t/V2uXehPJa1ZI',
22 'md5': 'e8e4b375a7660a9e7e35c33973410d34',
26 'title': 'The Amadeus Spectrometer',
27 'description': 're:^In this video, our friends at.*To learn more about Amadeus, visit',
28 'thumbnail': r
're:^https?://.*\.(?:gif|jpg)$',
31 'url': 'http://www.screencast.com/t/aAB3iowa',
32 'md5': 'dedb2734ed00c9755761ccaee88527cd',
36 'title': 'Google Earth Export',
37 'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.',
38 'thumbnail': r
're:^https?://.*\.(?:gif|jpg)$',
41 'url': 'http://www.screencast.com/t/X3ddTrYh',
42 'md5': '669ee55ff9c51988b4ebc0877cc8b159',
46 'title': 'Toolkit 6 User Group Webinar (2014-03-04) - Default Judgment and First Impression',
47 'description': 'md5:7b9f393bc92af02326a5c5889639eab0',
48 'thumbnail': r
're:^https?://.*\.(?:gif|jpg)$',
51 'url': 'http://screencast.com/t/aAB3iowa',
52 'only_matching': True,
55 def _real_extract(self
, url
):
56 video_id
= self
._match
_id
(url
)
57 webpage
= self
._download
_webpage
(url
, video_id
)
59 video_url
= self
._html
_search
_regex
(
60 r
'<embed name="Video".*?src="([^"]+)"', webpage
,
61 'QuickTime embed', default
=None)
64 flash_vars_s
= self
._html
_search
_regex
(
65 r
'<param name="flashVars" value="([^"]+)"', webpage
, 'flash vars',
68 flash_vars_s
= self
._html
_search
_regex
(
69 r
'<param name="initParams" value="([^"]+)"', webpage
, 'flash vars',
72 flash_vars_s
= flash_vars_s
.replace(',', '&')
74 flash_vars
= compat_parse_qs(flash_vars_s
)
75 video_url_raw
= urllib
.request
.quote(
76 flash_vars
['content'][0])
77 video_url
= video_url_raw
.replace('http%3A', 'http:')
80 video_meta
= self
._html
_search
_meta
(
81 'og:video', webpage
, default
=None)
83 video_url
= self
._search
_regex
(
84 r
'src=(.*?)(?:$|&)', video_meta
,
85 'meta tag video URL', default
=None)
88 video_url
= self
._html
_search
_regex
(
89 r
'MediaContentUrl["\']\s
*:(["\'])(?P<url>(?:(?!\1).)+)\1',
90 webpage, 'video url', default=None, group='url')
93 video_url = self._html_search_meta(
94 'og:video', webpage, default=None)
97 raise ExtractorError('Cannot find video')
99 title = self._og_search_title(webpage, default=None)
101 title = self._html_search_regex(
102 [r'<b>Title:</b> ([^<]+)</div>',
103 r'class="tabSeperator
">></span><span class="tabText
">(.+?)<',
104 r'<title>([^<]+)</title>'],
106 thumbnail = self._og_search_thumbnail(webpage)
107 description = self._og_search_description(webpage, default=None)
108 if description is None:
109 description = self._html_search_meta('description', webpage)
115 'description': description,
116 'thumbnail': thumbnail,