]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/screencast.py
ed9de964841e52c1e5753556d6b9e53339ba23c3
   2 from __future__ 
import unicode_literals
 
   4 from .common 
import InfoExtractor
 
  14 class ScreencastIE(InfoExtractor
): 
  15     _VALID_URL 
= r
'https?://(?:www\.)?screencast\.com/t/(?P<id>[a-zA-Z0-9]+)' 
  17         'url': 'http://www.screencast.com/t/3ZEjQXlT', 
  18         'md5': '917df1c13798a3e96211dd1561fded83', 
  22             'title': 'Color Measurement with Ocean Optics Spectrometers', 
  23             'description': 'md5:240369cde69d8bed61349a199c5fb153', 
  24             'thumbnail': 're:^https?://.*\.(?:gif|jpg)$', 
  27         'url': 'http://www.screencast.com/t/V2uXehPJa1ZI', 
  28         'md5': 'e8e4b375a7660a9e7e35c33973410d34', 
  32             'title': 'The Amadeus Spectrometer', 
  33             'description': 're:^In this video, our friends at.*To learn more about Amadeus, visit', 
  34             'thumbnail': 're:^https?://.*\.(?:gif|jpg)$', 
  37         'url': 'http://www.screencast.com/t/aAB3iowa', 
  38         'md5': 'dedb2734ed00c9755761ccaee88527cd', 
  42             'title': 'Google Earth Export', 
  43             'description': 'Provides a demo of a CommunityViz export to Google Earth, one of the 3D viewing options.', 
  44             'thumbnail': 're:^https?://.*\.(?:gif|jpg)$', 
  47         'url': 'http://www.screencast.com/t/X3ddTrYh', 
  48         'md5': '669ee55ff9c51988b4ebc0877cc8b159', 
  52             'title': 'Toolkit 6 User Group Webinar (2014-03-04) - Default Judgment and First Impression', 
  53             'description': 'md5:7b9f393bc92af02326a5c5889639eab0', 
  54             'thumbnail': 're:^https?://.*\.(?:gif|jpg)$', 
  57         'url': 'http://screencast.com/t/aAB3iowa', 
  58         'only_matching': True, 
  61     def _real_extract(self
, url
): 
  62         video_id 
= self
._match
_id
(url
) 
  63         webpage 
= self
._download
_webpage
(url
, video_id
) 
  65         video_url 
= self
._html
_search
_regex
( 
  66             r
'<embed name="Video".*?src="([^"]+)"', webpage
, 
  67             'QuickTime embed', default
=None) 
  70             flash_vars_s 
= self
._html
_search
_regex
( 
  71                 r
'<param name="flashVars" value="([^"]+)"', webpage
, 'flash vars', 
  74                 flash_vars_s 
= self
._html
_search
_regex
( 
  75                     r
'<param name="initParams" value="([^"]+)"', webpage
, 'flash vars', 
  78                     flash_vars_s 
= flash_vars_s
.replace(',', '&') 
  80                 flash_vars 
= compat_parse_qs(flash_vars_s
) 
  81                 video_url_raw 
= compat_urllib_request
.quote( 
  82                     flash_vars
['content'][0]) 
  83                 video_url 
= video_url_raw
.replace('http%3A', 'http:') 
  86             video_meta 
= self
._html
_search
_meta
( 
  87                 'og:video', webpage
, default
=None) 
  89                 video_url 
= self
._search
_regex
( 
  90                     r
'src=(.*?)(?:$|&)', video_meta
, 
  91                     'meta tag video URL', default
=None) 
  94             raise ExtractorError('Cannot find video') 
  96         title 
= self
._og
_search
_title
(webpage
, default
=None) 
  98             title 
= self
._html
_search
_regex
( 
  99                 [r
'<b>Title:</b> ([^<]+)</div>', 
 100                  r
'class="tabSeperator">></span><span class="tabText">(.+?)<', 
 101                  r
'<title>([^<]+)</title>'], 
 103         thumbnail 
= self
._og
_search
_thumbnail
(webpage
) 
 104         description 
= self
._og
_search
_description
(webpage
, default
=None) 
 105         if description 
is None: 
 106             description 
= self
._html
_search
_meta
('description', webpage
) 
 112             'description': description
, 
 113             'thumbnail': thumbnail
,