]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/mediasite.py
2 from __future__
import unicode_literals
7 from . common
import InfoExtractor
23 class MediasiteIE ( InfoExtractor
):
24 _VALID_URL
= r
'(?xi)https?://[^/]+/Mediasite/Play/(?P<id>[0-9a-f]{32,34})(?P<query>\?[^#]+|)'
27 'url' : 'https://hitsmediaweb.h-its.org/mediasite/Play/2db6c271681e4f199af3c60d1f82869b1d' ,
29 'id' : '2db6c271681e4f199af3c60d1f82869b1d' ,
31 'title' : 'Lecture: Tuesday, September 20, 2016 - Sir Andrew Wiles' ,
32 'description' : 'Sir Andrew Wiles: “Equations in arithmetic” \\ n \\ nI will describe some of the interactions between modern number theory and the problem of solving equations in rational numbers or integers \\ u0027.' ,
33 'timestamp' : 1474268400.0 ,
34 'upload_date' : '20160919' ,
38 'url' : 'http://mediasite.uib.no/Mediasite/Play/90bb363295d945d6b548c867d01181361d?catalog=a452b7df-9ae1-46b7-a3ba-aceeb285f3eb' ,
40 'id' : '90bb363295d945d6b548c867d01181361d' ,
42 'upload_date' : '20150429' ,
43 'title' : '5) IT-forum 2015-Dag 1 - Dungbeetle - How and why Rain created a tiny bug tracker for Unity' ,
44 'timestamp' : 1430311380.0 ,
48 'url' : 'https://collegerama.tudelft.nl/Mediasite/Play/585a43626e544bdd97aeb71a0ec907a01d' ,
49 'md5' : '481fda1c11f67588c0d9d8fbdced4e39' ,
51 'id' : '585a43626e544bdd97aeb71a0ec907a01d' ,
53 'title' : 'Een nieuwe wereld: waarden, bewustzijn en techniek van de mensheid 2.0.' ,
55 'thumbnail' : r
're:^https?://.*\.jpg(?:\?.*)?$' ,
57 'timestamp' : 1413309600 ,
58 'upload_date' : '20141014' ,
62 'url' : 'https://collegerama.tudelft.nl/Mediasite/Play/86a9ea9f53e149079fbdb4202b521ed21d?catalog=fd32fd35-6c99-466c-89d4-cd3c431bc8a4' ,
63 'md5' : 'ef1fdded95bdf19b12c5999949419c92' ,
65 'id' : '86a9ea9f53e149079fbdb4202b521ed21d' ,
67 'title' : '64ste Vakantiecursus: Afvalwater' ,
68 'description' : 'md5:7fd774865cc69d972f542b157c328305' ,
69 'thumbnail' : r
're:^https?://.*\.jpg(?:\?.*?)?$' ,
71 'timestamp' : 1326446400 ,
72 'upload_date' : '20120113' ,
76 'url' : 'http://digitalops.sandia.gov/Mediasite/Play/24aace4429fc450fb5b38cdbf424a66e1d' ,
77 'md5' : '9422edc9b9a60151727e4b6d8bef393d' ,
79 'id' : '24aace4429fc450fb5b38cdbf424a66e1d' ,
81 'title' : 'Xyce Software Training - Section 1' ,
82 'description' : r
're:(?s)SAND Number: SAND 2013-7800.{200,}' ,
83 'upload_date' : '20120409' ,
84 'timestamp' : 1333983600 ,
90 # look in Mediasite.Core.js (Mediasite.ContentStreamType[*])
92 0 : 'video1' , # the main video
95 4 : 'video2' , # screencast?
100 def _extract_urls ( webpage
):
102 unescapeHTML ( mobj
. group ( 'url' ))
103 for mobj
in re
. finditer (
104 r
'(?xi)<iframe\b[^>]+\bsrc=(["\' ])( ?P
< url
>( ?
:( ?
: https?
:) ?
//[ ^
/]+) ?
/ Mediasite
/ Play
/[ 0 - 9 a
- f
]{ 32 , 34 }( ?
: \? .* ?
) ?
) \
1 ',
107 def _real_extract(self, url):
108 url, data = unsmuggle_url(url, {})
109 mobj = re.match(self._VALID_URL, url)
110 resource_id = mobj.group(' id ')
111 query = mobj.group(' query
')
113 webpage, urlh = self._download_webpage_handle(url, resource_id) # XXX: add UrlReferrer?
114 redirect_url = compat_str(urlh.geturl())
116 # XXX: might have also extracted UrlReferrer and QueryString from the html
117 service_path = compat_urlparse.urljoin(redirect_url, self._html_search_regex(
118 r' < div
[ ^
>]+ \b id
=[ " \' ]ServicePath[^>]+>(.+?)</div>', webpage, resource_id,
119 default='/Mediasite/PlayerService/PlayerService.svc/json'))
121 player_options = self._download_json(
122 ' %s /GetPlayerOptions' % service_path, resource_id,
124 'Content-type': 'application/json; charset=utf-8',
125 'X-Requested-With': 'XMLHttpRequest',
128 'getPlayerOptionsRequest': {
129 'ResourceId': resource_id,
130 'QueryString': query,
131 'UrlReferrer': data.get('UrlReferrer', ''),
132 'UseScreenReader': False,
134 }).encode('utf-8'))['d']
136 presentation = player_options['Presentation']
137 title = presentation['Title']
139 if presentation is None:
140 raise ExtractorError(
141 'Mediasite says: %s ' % player_options['PlayerPresentationStatusMessage'],
146 for snum, Stream in enumerate(presentation['Streams']):
147 stream_type = Stream.get('StreamType')
148 if stream_type is None:
151 video_urls = Stream.get('VideoUrls')
152 if not isinstance(video_urls, list):
155 stream_id = self._STREAM_TYPES.get(
156 stream_type, 'type %u ' % stream_type)
159 for unum, VideoUrl in enumerate(video_urls):
160 video_url = url_or_none(VideoUrl.get('Location'))
163 # XXX: if Stream.get('CanChangeScheme', False), switch scheme to HTTP/HTTPS
165 media_type = VideoUrl.get('MediaType')
166 if media_type == 'SS':
167 stream_formats.extend(self._extract_ism_formats(
168 video_url, resource_id,
169 ism_id=' %s-%u . %u ' % (stream_id, snum, unum),
171 elif media_type == 'Dash':
172 stream_formats.extend(self._extract_mpd_formats(
173 video_url, resource_id,
174 mpd_id=' %s-%u . %u ' % (stream_id, snum, unum),
177 stream_formats.append({
178 'format_id': ' %s-%u . %u ' % (stream_id, snum, unum),
180 'ext': mimetype2ext(VideoUrl.get('MimeType')),
183 # TODO: if Stream['HasSlideContent']:
184 # synthesise an MJPEG video stream ' %s-%u .slides' % (stream_type, snum)
185 # from Stream['Slides']
186 # this will require writing a custom downloader...
188 # disprefer 'secondary' streams
190 for fmt in stream_formats:
191 fmt['preference'] = -1
193 thumbnail_url = Stream.get('ThumbnailUrl')
196 'id': ' %s-%u ' % (stream_id, snum),
197 'url': urljoin(redirect_url, thumbnail_url),
198 'preference': -1 if stream_type != 0 else 0,
200 formats.extend(stream_formats)
202 self._sort_formats(formats)
204 # XXX: Presentation['Presenters']
205 # XXX: Presentation['Transcript']
210 'description': presentation.get('Description'),
211 'duration': float_or_none(presentation.get('Duration'), 1000),
212 'timestamp': float_or_none(presentation.get('UnixTime'), 1000),
214 'thumbnails': thumbnails,