]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/udemy.py
1 from __future__
import unicode_literals
5 from . common
import InfoExtractor
10 compat_urllib_request
,
28 class UdemyIE ( InfoExtractor
):
35 lecture/view/?\?lectureId=|
36 [^/]+/learn/v4/t/lecture/
40 _LOGIN_URL
= 'https://www.udemy.com/join/login-popup/?displayType=ajax&showSkipButton=1'
41 _ORIGIN_URL
= 'https://www.udemy.com'
42 _NETRC_MACHINE
= 'udemy'
45 'url' : 'https://www.udemy.com/java-tutorial/#/lecture/172757' ,
46 'md5' : '98eda5b657e752cf945d8445e261b5c5' ,
50 'title' : 'Introduction and Installation' ,
51 'description' : 'md5:c0d51f6f21ef4ec65f091055a5eef876' ,
54 'skip' : 'Requires udemy account credentials' ,
57 'url' : 'https://www.udemy.com/electric-bass-right-from-the-start/learn/v4/t/lecture/4580906' ,
58 'only_matching' : True ,
60 # no url in outputs format entry
61 'url' : 'https://www.udemy.com/learn-web-development-complete-step-by-step-guide-to-success/learn/v4/t/lecture/4125812' ,
62 'only_matching' : True ,
64 # only outputs rendition
65 'url' : 'https://www.udemy.com/how-you-can-help-your-local-community-5-amazing-examples/learn/v4/t/lecture/3225750?start=0' ,
66 'only_matching' : True ,
69 def _extract_course_info ( self
, webpage
, video_id
):
70 course
= self
._ parse
_ json
(
71 unescapeHTML ( self
._ search
_ regex
(
72 r
'ng-init=["\' ].* \b course
=({.+ ?
})[; " \' ]',
73 webpage, 'course', default='{}')),
74 video_id, fatal=False) or {}
75 course_id = course.get('id') or self._search_regex(
76 r'data-course-id=[" \' ]( \d
+) ', webpage, ' course
id ')
77 return course_id, course.get(' title
')
79 def _enroll_course(self, base_url, webpage, course_id):
80 def combine_url(base_url, url):
81 return compat_urlparse.urljoin(base_url, url) if not url.startswith(' http
') else url
83 checkout_url = unescapeHTML(self._search_regex(
84 r' href
=([ " \' ])(?P<url>(?:https?://(?:www\.)?udemy\.com)?/(?:payment|cart)/checkout/.+?)\1',
85 webpage, 'checkout url', group='url', default=None))
88 'Course %s is not free. You have to pay for it before you can download. '
89 'Use this URL to confirm purchase: %s '
90 % (course_id, combine_url(base_url, checkout_url)),
93 enroll_url = unescapeHTML(self._search_regex(
94 r'href=([" \' ])( ?P
< url
>( ?
: https?
://( ?
: www\
.) ?udemy\
. com
) ?
/ course
/ subscribe
/.+ ?
) \
1 ',
95 webpage, ' enroll url
', group=' url
', default=None))
97 webpage = self._download_webpage(
98 combine_url(base_url, enroll_url),
99 course_id, ' Enrolling
in the course
',
100 headers={' Referer
': base_url})
101 if ' > You have enrolled
in ' in webpage:
102 self.to_screen(' %s: Successfully enrolled
in the course
' % course_id)
104 def _download_lecture(self, course_id, lecture_id):
105 return self._download_json(
106 ' https
:// www
. udemy
. com
/ api
- 2.0 / users
/ me
/ subscribed
- courses
/ %s/ lectures
/ %s ?
'
107 % (course_id, lecture_id),
108 lecture_id, ' Downloading lecture JSON
', query={
109 ' fields
[ lecture
] ': ' title
, description
, view_html
, asset
',
110 ' fields
[ asset
] ': ' asset_type
, stream_url
, thumbnail_url
, download_urls
, stream_urls
, captions
, data
',
113 def _handle_error(self, response):
114 if not isinstance(response, dict):
116 error = response.get(' error
')
118 error_str = ' Udemy returned error
#%s: %s' % (error.get('code'), error.get('message'))
119 error_data
= error
. get ( 'data' )
121 error_str
+= ' - %s ' % error_data
. get ( 'formErrors' )
122 raise ExtractorError ( error_str
, expected
= True )
124 def _download_webpage_handle ( self
, * args
, ** kwargs
):
125 kwargs
. setdefault ( 'headers' , {})[ 'User-Agent' ] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.1.1 Safari/603.2.4'
126 return super ( UdemyIE
, self
) ._ download
_ webpage
_ handle
(
127 * args
, ** compat_kwargs ( kwargs
))
129 def _download_json ( self
, url_or_request
, * args
, ** kwargs
):
131 'X-Udemy-Snail-Case' : 'true' ,
132 'X-Requested-With' : 'XMLHttpRequest' ,
134 for cookie
in self
._ downloader
. cookiejar
:
135 if cookie
. name
== 'client_id' :
136 headers
[ 'X-Udemy-Client-Id' ] = cookie
. value
137 elif cookie
. name
== 'access_token' :
138 headers
[ 'X-Udemy-Bearer-Token' ] = cookie
. value
139 headers
[ 'X-Udemy-Authorization' ] = 'Bearer %s ' % cookie
. value
141 if isinstance ( url_or_request
, compat_urllib_request
. Request
):
142 for header
, value
in headers
. items ():
143 url_or_request
. add_header ( header
, value
)
145 url_or_request
= sanitized_Request ( url_or_request
, headers
= headers
)
147 response
= super ( UdemyIE
, self
) ._ download
_ json
( url_or_request
, * args
, ** kwargs
)
148 self
._ handle
_ error
( response
)
151 def _real_initialize ( self
):
155 username
, password
= self
._ get
_l ogin
_ info
()
159 login_popup
= self
._ download
_ webpage
(
160 self
._L OGIN
_U RL
, None , 'Downloading login popup' )
162 def is_logged ( webpage
):
163 return any ( re
. search ( p
, webpage
) for p
in (
164 r
'href=["\' ]( ?
: https
:// www\
. udemy\
. com
) ?
/ user
/ logout
/ ',
168 if is_logged(login_popup):
171 login_form = self._form_hidden_inputs(' login
- form
', login_popup)
175 ' password
': password,
178 response = self._download_webpage(
179 self._LOGIN_URL, None, ' Logging
in ',
180 data=urlencode_postdata(login_form),
182 ' Referer
': self._ORIGIN_URL,
183 ' Origin
': self._ORIGIN_URL,
186 if not is_logged(response):
187 error = self._html_search_regex(
188 r' ( ?s
)< div
[ ^
>]+ class = "form-errors[^" ]* ">(.+?)</div>',
189 response, 'error message', default=None)
191 raise ExtractorError('Unable to login: %s ' % error, expected=True)
192 raise ExtractorError('Unable to log in')
194 def _real_extract(self, url):
195 lecture_id = self._match_id(url)
197 webpage = self._download_webpage(url, lecture_id)
199 course_id, _ = self._extract_course_info(webpage, lecture_id)
202 lecture = self._download_lecture(course_id, lecture_id)
203 except ExtractorError as e:
204 # Error could possibly mean we are not enrolled in the course
205 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
206 self._enroll_course(url, webpage, course_id)
207 lecture = self._download_lecture(course_id, lecture_id)
211 title = lecture['title']
212 description = lecture.get('description')
214 asset = lecture['asset']
216 asset_type = asset.get('asset_type') or asset.get('assetType')
217 if asset_type != 'Video':
218 raise ExtractorError(
219 'Lecture %s is not a video' % lecture_id, expected=True)
221 stream_url = asset.get('stream_url') or asset.get('streamUrl')
223 youtube_url = self._search_regex(
224 r'(https?://www\.youtube\.com/watch \? v=.*)', stream_url, 'youtube URL', default=None)
226 return self.url_result(youtube_url, 'Youtube')
228 video_id = compat_str(asset['id'])
229 thumbnail = asset.get('thumbnail_url') or asset.get('thumbnailUrl')
230 duration = float_or_none(asset.get('data', {}).get('duration'))
233 automatic_captions = {}
237 def extract_output_format(src, f_id):
239 'url': src.get('url'),
240 'format_id': ' %s p' % (src.get('height') or f_id),
241 'width': int_or_none(src.get('width')),
242 'height': int_or_none(src.get('height')),
243 'vbr': int_or_none(src.get('video_bitrate_in_kbps')),
244 'vcodec': src.get('video_codec'),
245 'fps': int_or_none(src.get('frame_rate')),
246 'abr': int_or_none(src.get('audio_bitrate_in_kbps')),
247 'acodec': src.get('audio_codec'),
248 'asr': int_or_none(src.get('audio_sample_rate')),
249 'tbr': int_or_none(src.get('total_bitrate_in_kbps')),
250 'filesize': int_or_none(src.get('file_size_in_bytes')),
253 outputs = asset.get('data', {}).get('outputs')
254 if not isinstance(outputs, dict):
257 def add_output_format_meta(f, key):
258 output = outputs.get(key)
259 if isinstance(output, dict):
260 output_format = extract_output_format(output, key)
261 output_format.update(f)
265 def extract_formats(source_list):
266 if not isinstance(source_list, list):
268 for source in source_list:
269 video_url = url_or_none(source.get('file') or source.get('src'))
272 if source.get('type') == 'application/x-mpegURL' or determine_ext(video_url) == 'm3u8':
273 formats.extend(self._extract_m3u8_formats(
274 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
275 m3u8_id='hls', fatal=False))
277 format_id = source.get('label')
280 'format_id': ' %s p' % format_id,
281 'height': int_or_none(format_id),
284 # Some videos contain additional metadata (e.g.
285 # https://www.udemy.com/ios9-swift/learn/#/lecture/3383208)
286 f = add_output_format_meta(f, format_id)
289 def extract_subtitles(track_list):
290 if not isinstance(track_list, list):
292 for track in track_list:
293 if not isinstance(track, dict):
295 if track.get('kind') != 'captions':
297 src = url_or_none(track.get('src'))
300 lang = track.get('language') or track.get(
301 'srclang') or track.get('label')
302 sub_dict = automatic_captions if track.get(
303 'autogenerated') is True else subtitles
304 sub_dict.setdefault(lang, []).append({
308 for url_kind in ('download', 'stream'):
309 urls = asset.get(' %s _urls' % url_kind)
310 if isinstance(urls, dict):
311 extract_formats(urls.get('Video'))
313 captions = asset.get('captions')
314 if isinstance(captions, list):
316 if not isinstance(cc, dict):
318 cc_url = url_or_none(cc.get('url'))
321 lang = try_get(cc, lambda x: x['locale']['locale'], compat_str)
322 sub_dict = (automatic_captions if cc.get('source') == 'auto'
324 sub_dict.setdefault(lang or 'en', []).append({
328 view_html = lecture.get('view_html')
330 view_html_urls = set()
331 for source in re.findall(r'<source[^>]+>', view_html):
332 attributes = extract_attributes(source)
333 src = attributes.get('src')
336 res = attributes.get('data-res')
337 height = int_or_none(res)
338 if src in view_html_urls:
340 view_html_urls.add(src)
341 if attributes.get('type') == 'application/x-mpegURL' or determine_ext(src) == 'm3u8':
342 m3u8_formats = self._extract_m3u8_formats(
343 src, video_id, 'mp4', entry_protocol='m3u8_native',
344 m3u8_id='hls', fatal=False)
345 for f in m3u8_formats:
346 m = re.search(r'/hls_(?P<height>\d{3,4})_(?P<tbr>\d{2,})/', f['url'])
348 if not f.get('height'):
349 f['height'] = int(m.group('height'))
351 f['tbr'] = int(m.group('tbr'))
352 formats.extend(m3u8_formats)
354 formats.append(add_output_format_meta({
356 'format_id': ' %d p' % height if height else None,
360 # react rendition since 2017.04.15 (see
361 # https://github.com/rg3/youtube-dl/issues/12744)
362 data = self._parse_json(
364 r'videojs-setup-data=([" \' ])( ?P
< data
>{.+ ?
}) \
1 ', view_html,
365 ' setup data
', default=' {} ', group=' data
'), video_id,
366 transform_source=unescapeHTML, fatal=False)
367 if data and isinstance(data, dict):
368 extract_formats(data.get(' sources
'))
370 duration = int_or_none(data.get(' duration
'))
371 extract_subtitles(data.get(' tracks
'))
373 if not subtitles and not automatic_captions:
374 text_tracks = self._parse_json(
376 r' text
- tracks
=([ " \' ])(?P<data>\[.+?\])\1', view_html,
377 'text tracks', default='{}', group='data'), video_id,
378 transform_source=lambda s: js_to_json(unescapeHTML(s)),
380 extract_subtitles(text_tracks)
382 if not formats and outputs:
383 for format_id, output in outputs.items():
384 f = extract_output_format(output, format_id)
388 self._sort_formats(formats, field_preference=('height', 'width', 'tbr', 'format_id'))
393 'description': description,
394 'thumbnail': thumbnail,
395 'duration': duration,
397 'subtitles': subtitles,
398 'automatic_captions': automatic_captions,
402 class UdemyCourseIE(UdemyIE):
403 IE_NAME = 'udemy:course'
404 _VALID_URL = r'https?://(?:www\.)?udemy\.com/(?P<id>[^/?#&]+)'
408 def suitable(cls, url):
409 return False if UdemyIE.suitable(url) else super(UdemyCourseIE, cls).suitable(url)
411 def _real_extract(self, url):
412 course_path = self._match_id(url)
414 webpage = self._download_webpage(url, course_path)
416 course_id, title = self._extract_course_info(webpage, course_path)
418 self._enroll_course(url, webpage, course_id)
420 response = self._download_json(
421 'https://www.udemy.com/api-2.0/courses/ %s /cached-subscriber-curriculum-items' % course_id,
422 course_id, 'Downloading course curriculum', query={
423 'fields[chapter]': 'title,object_index',
424 'fields[lecture]': 'title,asset',
429 chapter, chapter_number = [None] * 2
430 for entry in response['results']:
431 clazz = entry.get('_class')
432 if clazz == 'lecture':
433 asset = entry.get('asset')
434 if isinstance(asset, dict):
435 asset_type = asset.get('asset_type') or asset.get('assetType')
436 if asset_type != 'Video':
438 lecture_id = entry.get('id')
441 '_type': 'url_transparent',
442 'url': 'https://www.udemy.com/ %s /learn/v4/t/lecture/ %s ' % (course_path, entry['id']),
443 'title': entry.get('title'),
444 'ie_key': UdemyIE.ie_key(),
447 entry['chapter_number'] = chapter_number
449 entry['chapter'] = chapter
450 entries.append(entry)
451 elif clazz == 'chapter':
452 chapter_number = entry.get('object_index')
453 chapter = entry.get('title')
455 return self.playlist_result(entries, course_id, title)