]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/udemy.py
[compat] Fix `compat.WINDOWS_VT_MODE`
[yt-dlp.git] / yt_dlp / extractor / udemy.py
CommitLineData
efcba804
S
1import re
2
e5de3f6c 3from .common import InfoExtractor
1cc79574 4from ..compat import (
328f82d5 5 compat_HTTPError,
0a439c5c 6 compat_str,
e5de3f6c 7 compat_urllib_request,
ff9d5d09 8 compat_urlparse,
1cc79574
PH
9)
10from ..utils import (
efcba804
S
11 determine_ext,
12 extract_attributes,
e5de3f6c 13 ExtractorError,
328f82d5 14 float_or_none,
3b35c342 15 int_or_none,
57a38a38 16 js_to_json,
5c2266df 17 sanitized_Request,
2fbd8635 18 try_get,
17b2d7ca 19 unescapeHTML,
3052a30d 20 url_or_none,
6e6bc8da 21 urlencode_postdata,
e5de3f6c
S
22)
23
24
25class UdemyIE(InfoExtractor):
26 IE_NAME = 'udemy'
5eb7db4e
S
27 _VALID_URL = r'''(?x)
28 https?://
d7d51389 29 (?:[^/]+\.)?udemy\.com/
5eb7db4e
S
30 (?:
31 [^#]+\#/lecture/|
32 lecture/view/?\?lectureId=|
33 [^/]+/learn/v4/t/lecture/
34 )
35 (?P<id>\d+)
36 '''
dcd4d95c
S
37 _LOGIN_URL = 'https://www.udemy.com/join/login-popup/?displayType=ajax&showSkipButton=1'
38 _ORIGIN_URL = 'https://www.udemy.com'
e5de3f6c
S
39 _NETRC_MACHINE = 'udemy'
40
6563837e 41 _TESTS = [{
e5de3f6c
S
42 'url': 'https://www.udemy.com/java-tutorial/#/lecture/172757',
43 'md5': '98eda5b657e752cf945d8445e261b5c5',
44 'info_dict': {
45 'id': '160614',
46 'ext': 'mp4',
47 'title': 'Introduction and Installation',
48 'description': 'md5:c0d51f6f21ef4ec65f091055a5eef876',
49 'duration': 579.29,
50 },
51 'skip': 'Requires udemy account credentials',
5eb7db4e
S
52 }, {
53 # new URL schema
54 'url': 'https://www.udemy.com/electric-bass-right-from-the-start/learn/v4/t/lecture/4580906',
55 'only_matching': True,
b7f87493
S
56 }, {
57 # no url in outputs format entry
58 'url': 'https://www.udemy.com/learn-web-development-complete-step-by-step-guide-to-success/learn/v4/t/lecture/4125812',
59 'only_matching': True,
85139634
S
60 }, {
61 # only outputs rendition
62 'url': 'https://www.udemy.com/how-you-can-help-your-local-community-5-amazing-examples/learn/v4/t/lecture/3225750?start=0',
63 'only_matching': True,
d7d51389
S
64 }, {
65 'url': 'https://wipro.udemy.com/java-tutorial/#/lecture/172757',
66 'only_matching': True,
6563837e 67 }]
e5de3f6c 68
81da8cbc
S
69 def _extract_course_info(self, webpage, video_id):
70 course = self._parse_json(
71 unescapeHTML(self._search_regex(
6f1ec339
S
72 r'ng-init=["\'].*\bcourse=({.+?})[;"\']',
73 webpage, 'course', default='{}')),
81da8cbc
S
74 video_id, fatal=False) or {}
75 course_id = course.get('id') or self._search_regex(
5de53878
RA
76 [
77 r'data-course-id=["\'](\d+)',
78 r'&quot;courseId&quot;\s*:\s*(\d+)'
79 ], webpage, 'course id')
81da8cbc
S
80 return course_id, course.get('title')
81
ff9d5d09 82 def _enroll_course(self, base_url, webpage, course_id):
b24ab3e3
S
83 def combine_url(base_url, url):
84 return compat_urlparse.urljoin(base_url, url) if not url.startswith('http') else url
85
17b2d7ca 86 checkout_url = unescapeHTML(self._search_regex(
5f5c7b92 87 r'href=(["\'])(?P<url>(?:https?://(?:www\.)?udemy\.com)?/(?:payment|cart)/checkout/.+?)\1',
17b2d7ca
S
88 webpage, 'checkout url', group='url', default=None))
89 if checkout_url:
90 raise ExtractorError(
f20756fb 91 'Course %s is not free. You have to pay for it before you can download. '
b24ab3e3
S
92 'Use this URL to confirm purchase: %s'
93 % (course_id, combine_url(base_url, checkout_url)),
94 expected=True)
17b2d7ca
S
95
96 enroll_url = unescapeHTML(self._search_regex(
ff9d5d09 97 r'href=(["\'])(?P<url>(?:https?://(?:www\.)?udemy\.com)?/course/subscribe/.+?)\1',
17b2d7ca
S
98 webpage, 'enroll url', group='url', default=None))
99 if enroll_url:
b24ab3e3
S
100 webpage = self._download_webpage(
101 combine_url(base_url, enroll_url),
aabdc83d
S
102 course_id, 'Enrolling in the course',
103 headers={'Referer': base_url})
17b2d7ca
S
104 if '>You have enrolled in' in webpage:
105 self.to_screen('%s: Successfully enrolled in the course' % course_id)
328f82d5
S
106
107 def _download_lecture(self, course_id, lecture_id):
108 return self._download_json(
75b81df3
S
109 'https://www.udemy.com/api-2.0/users/me/subscribed-courses/%s/lectures/%s?'
110 % (course_id, lecture_id),
111 lecture_id, 'Downloading lecture JSON', query={
112 'fields[lecture]': 'title,description,view_html,asset',
2fbd8635 113 'fields[asset]': 'asset_type,stream_url,thumbnail_url,download_urls,stream_urls,captions,data',
75b81df3 114 })
328f82d5 115
e5de3f6c
S
116 def _handle_error(self, response):
117 if not isinstance(response, dict):
118 return
119 error = response.get('error')
120 if error:
121 error_str = 'Udemy returned error #%s: %s' % (error.get('code'), error.get('message'))
122 error_data = error.get('data')
123 if error_data:
124 error_str += ' - %s' % error_data.get('formErrors')
125 raise ExtractorError(error_str, expected=True)
126
e5eadfa8 127 def _download_webpage_handle(self, *args, **kwargs):
c8f6ab8c 128 headers = kwargs.get('headers', {}).copy()
ae65c93a 129 headers['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'
c8f6ab8c 130 kwargs['headers'] = headers
ae65c93a 131 ret = super(UdemyIE, self)._download_webpage_handle(
f9934b96 132 *args, **kwargs)
ae65c93a
S
133 if not ret:
134 return ret
135 webpage, _ = ret
136 if any(p in webpage for p in (
137 '>Please verify you are a human',
138 'Access to this page has been denied because we believe you are using automation tools to browse the website',
139 '"_pxCaptcha"')):
140 raise ExtractorError(
141 'Udemy asks you to solve a CAPTCHA. Login with browser, '
142 'solve CAPTCHA, then export cookies and pass cookie file to '
7a5c1cfe 143 'yt-dlp with --cookies.', expected=True)
ae65c93a 144 return ret
abe8766c 145
81da8cbc 146 def _download_json(self, url_or_request, *args, **kwargs):
e2937118
S
147 headers = {
148 'X-Udemy-Snail-Case': 'true',
149 'X-Requested-With': 'XMLHttpRequest',
150 }
9809740b 151 for cookie in self.cookiejar:
e2937118
S
152 if cookie.name == 'client_id':
153 headers['X-Udemy-Client-Id'] = cookie.value
154 elif cookie.name == 'access_token':
155 headers['X-Udemy-Bearer-Token'] = cookie.value
328f82d5 156 headers['X-Udemy-Authorization'] = 'Bearer %s' % cookie.value
61c0663c
S
157
158 if isinstance(url_or_request, compat_urllib_request.Request):
159 for header, value in headers.items():
160 url_or_request.add_header(header, value)
161 else:
5c2266df 162 url_or_request = sanitized_Request(url_or_request, headers=headers)
61c0663c 163
81da8cbc 164 response = super(UdemyIE, self)._download_json(url_or_request, *args, **kwargs)
61c0663c
S
165 self._handle_error(response)
166 return response
e2937118 167
52efa4b3 168 def _perform_login(self, username, password):
e5de3f6c 169 login_popup = self._download_webpage(
dcd4d95c 170 self._LOGIN_URL, None, 'Downloading login popup')
e5de3f6c 171
d609edf4 172 def is_logged(webpage):
807cf7b0
S
173 return any(re.search(p, webpage) for p in (
174 r'href=["\'](?:https://www\.udemy\.com)?/user/logout/',
175 r'>Logout<'))
d609edf4
S
176
177 # already logged in
178 if is_logged(login_popup):
e5de3f6c
S
179 return
180
dcd4d95c 181 login_form = self._form_hidden_inputs('login-form', login_popup)
e5de3f6c 182
dcd4d95c 183 login_form.update({
a3373823
S
184 'email': username,
185 'password': password,
dcd4d95c
S
186 })
187
dcd4d95c 188 response = self._download_webpage(
e4d95865 189 self._LOGIN_URL, None, 'Logging in',
75b81df3
S
190 data=urlencode_postdata(login_form),
191 headers={
192 'Referer': self._ORIGIN_URL,
193 'Origin': self._ORIGIN_URL,
194 })
e5de3f6c 195
d609edf4 196 if not is_logged(response):
dcd4d95c
S
197 error = self._html_search_regex(
198 r'(?s)<div[^>]+class="form-errors[^"]*">(.+?)</div>',
199 response, 'error message', default=None)
200 if error:
201 raise ExtractorError('Unable to login: %s' % error, expected=True)
e5de3f6c
S
202 raise ExtractorError('Unable to log in')
203
204 def _real_extract(self, url):
810fb84d 205 lecture_id = self._match_id(url)
e5de3f6c 206
328f82d5
S
207 webpage = self._download_webpage(url, lecture_id)
208
81da8cbc 209 course_id, _ = self._extract_course_info(webpage, lecture_id)
e5de3f6c 210
328f82d5
S
211 try:
212 lecture = self._download_lecture(course_id, lecture_id)
213 except ExtractorError as e:
214 # Error could possibly mean we are not enrolled in the course
215 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
ff9d5d09 216 self._enroll_course(url, webpage, course_id)
3092fc40 217 lecture = self._download_lecture(course_id, lecture_id)
328f82d5
S
218 else:
219 raise
220
221 title = lecture['title']
222 description = lecture.get('description')
223
224 asset = lecture['asset']
225
03caa463 226 asset_type = asset.get('asset_type') or asset.get('assetType')
e2937118
S
227 if asset_type != 'Video':
228 raise ExtractorError(
229 'Lecture %s is not a video' % lecture_id, expected=True)
e5de3f6c 230
03caa463 231 stream_url = asset.get('stream_url') or asset.get('streamUrl')
328f82d5
S
232 if stream_url:
233 youtube_url = self._search_regex(
234 r'(https?://www\.youtube\.com/watch\?v=.*)', stream_url, 'youtube URL', default=None)
235 if youtube_url:
236 return self.url_result(youtube_url, 'Youtube')
e5de3f6c 237
0a439c5c 238 video_id = compat_str(asset['id'])
03caa463 239 thumbnail = asset.get('thumbnail_url') or asset.get('thumbnailUrl')
328f82d5 240 duration = float_or_none(asset.get('data', {}).get('duration'))
328f82d5 241
3dfceb28
S
242 subtitles = {}
243 automatic_captions = {}
244
328f82d5 245 formats = []
f0e83681 246
3dfceb28 247 def extract_output_format(src, f_id):
f0e83681 248 return {
b7f87493 249 'url': src.get('url'),
3dfceb28 250 'format_id': '%sp' % (src.get('height') or f_id),
f0e83681
S
251 'width': int_or_none(src.get('width')),
252 'height': int_or_none(src.get('height')),
253 'vbr': int_or_none(src.get('video_bitrate_in_kbps')),
254 'vcodec': src.get('video_codec'),
255 'fps': int_or_none(src.get('frame_rate')),
256 'abr': int_or_none(src.get('audio_bitrate_in_kbps')),
257 'acodec': src.get('audio_codec'),
258 'asr': int_or_none(src.get('audio_sample_rate')),
259 'tbr': int_or_none(src.get('total_bitrate_in_kbps')),
260 'filesize': int_or_none(src.get('file_size_in_bytes')),
328f82d5 261 }
f0e83681
S
262
263 outputs = asset.get('data', {}).get('outputs')
264 if not isinstance(outputs, dict):
265 outputs = {}
266
af4116f4 267 def add_output_format_meta(f, key):
62f55aa6
S
268 output = outputs.get(key)
269 if isinstance(output, dict):
3dfceb28 270 output_format = extract_output_format(output, key)
62f55aa6
S
271 output_format.update(f)
272 return output_format
af4116f4 273 return f
62f55aa6 274
3dfceb28
S
275 def extract_formats(source_list):
276 if not isinstance(source_list, list):
277 return
278 for source in source_list:
3052a30d
S
279 video_url = url_or_none(source.get('file') or source.get('src'))
280 if not video_url:
3dfceb28 281 continue
913b61ee
S
282 if source.get('type') == 'application/x-mpegURL' or determine_ext(video_url) == 'm3u8':
283 formats.extend(self._extract_m3u8_formats(
284 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
285 m3u8_id='hls', fatal=False))
286 continue
3dfceb28
S
287 format_id = source.get('label')
288 f = {
289 'url': video_url,
290 'format_id': '%sp' % format_id,
291 'height': int_or_none(format_id),
292 }
293 if format_id:
294 # Some videos contain additional metadata (e.g.
295 # https://www.udemy.com/ios9-swift/learn/#/lecture/3383208)
296 f = add_output_format_meta(f, format_id)
297 formats.append(f)
298
57a38a38
S
299 def extract_subtitles(track_list):
300 if not isinstance(track_list, list):
301 return
302 for track in track_list:
303 if not isinstance(track, dict):
304 continue
305 if track.get('kind') != 'captions':
306 continue
3052a30d
S
307 src = url_or_none(track.get('src'))
308 if not src:
57a38a38
S
309 continue
310 lang = track.get('language') or track.get(
311 'srclang') or track.get('label')
312 sub_dict = automatic_captions if track.get(
313 'autogenerated') is True else subtitles
314 sub_dict.setdefault(lang, []).append({
315 'url': src,
316 })
317
0ce76801
S
318 for url_kind in ('download', 'stream'):
319 urls = asset.get('%s_urls' % url_kind)
320 if isinstance(urls, dict):
321 extract_formats(urls.get('Video'))
3b35c342 322
2fbd8635
S
323 captions = asset.get('captions')
324 if isinstance(captions, list):
325 for cc in captions:
326 if not isinstance(cc, dict):
327 continue
3052a30d
S
328 cc_url = url_or_none(cc.get('url'))
329 if not cc_url:
2fbd8635
S
330 continue
331 lang = try_get(cc, lambda x: x['locale']['locale'], compat_str)
332 sub_dict = (automatic_captions if cc.get('source') == 'auto'
333 else subtitles)
334 sub_dict.setdefault(lang or 'en', []).append({
335 'url': cc_url,
336 })
337
efcba804
S
338 view_html = lecture.get('view_html')
339 if view_html:
340 view_html_urls = set()
341 for source in re.findall(r'<source[^>]+>', view_html):
342 attributes = extract_attributes(source)
343 src = attributes.get('src')
344 if not src:
345 continue
346 res = attributes.get('data-res')
347 height = int_or_none(res)
348 if src in view_html_urls:
349 continue
350 view_html_urls.add(src)
351 if attributes.get('type') == 'application/x-mpegURL' or determine_ext(src) == 'm3u8':
352 m3u8_formats = self._extract_m3u8_formats(
353 src, video_id, 'mp4', entry_protocol='m3u8_native',
354 m3u8_id='hls', fatal=False)
355 for f in m3u8_formats:
356 m = re.search(r'/hls_(?P<height>\d{3,4})_(?P<tbr>\d{2,})/', f['url'])
357 if m:
358 if not f.get('height'):
359 f['height'] = int(m.group('height'))
360 if not f.get('tbr'):
361 f['tbr'] = int(m.group('tbr'))
362 formats.extend(m3u8_formats)
363 else:
62f55aa6 364 formats.append(add_output_format_meta({
efcba804 365 'url': src,
af4116f4 366 'format_id': '%dp' % height if height else None,
efcba804 367 'height': height,
af4116f4 368 }, res))
efcba804 369
3dfceb28 370 # react rendition since 2017.04.15 (see
067aa17e 371 # https://github.com/ytdl-org/youtube-dl/issues/12744)
3dfceb28
S
372 data = self._parse_json(
373 self._search_regex(
374 r'videojs-setup-data=(["\'])(?P<data>{.+?})\1', view_html,
375 'setup data', default='{}', group='data'), video_id,
376 transform_source=unescapeHTML, fatal=False)
377 if data and isinstance(data, dict):
378 extract_formats(data.get('sources'))
379 if not duration:
380 duration = int_or_none(data.get('duration'))
57a38a38
S
381 extract_subtitles(data.get('tracks'))
382
383 if not subtitles and not automatic_captions:
384 text_tracks = self._parse_json(
385 self._search_regex(
386 r'text-tracks=(["\'])(?P<data>\[.+?\])\1', view_html,
387 'text tracks', default='{}', group='data'), video_id,
388 transform_source=lambda s: js_to_json(unescapeHTML(s)),
389 fatal=False)
390 extract_subtitles(text_tracks)
3dfceb28 391
85139634
S
392 if not formats and outputs:
393 for format_id, output in outputs.items():
394 f = extract_output_format(output, format_id)
395 if f.get('url'):
396 formats.append(f)
397
54f37eea 398 self._sort_formats(formats)
e5de3f6c 399
e5de3f6c
S
400 return {
401 'id': video_id,
402 'title': title,
403 'description': description,
404 'thumbnail': thumbnail,
405 'duration': duration,
3dfceb28
S
406 'formats': formats,
407 'subtitles': subtitles,
408 'automatic_captions': automatic_captions,
e5de3f6c
S
409 }
410
411
412class UdemyCourseIE(UdemyIE):
413 IE_NAME = 'udemy:course'
d7d51389
S
414 _VALID_URL = r'https?://(?:[^/]+\.)?udemy\.com/(?P<id>[^/?#&]+)'
415 _TESTS = [{
416 'url': 'https://www.udemy.com/java-tutorial/',
417 'only_matching': True,
418 }, {
419 'url': 'https://wipro.udemy.com/java-tutorial/',
420 'only_matching': True,
421 }]
e5de3f6c
S
422
423 @classmethod
424 def suitable(cls, url):
425 return False if UdemyIE.suitable(url) else super(UdemyCourseIE, cls).suitable(url)
426
427 def _real_extract(self, url):
328f82d5
S
428 course_path = self._match_id(url)
429
430 webpage = self._download_webpage(url, course_path)
e5de3f6c 431
81da8cbc 432 course_id, title = self._extract_course_info(webpage, course_path)
e5de3f6c 433
ff9d5d09 434 self._enroll_course(url, webpage, course_id)
e5de3f6c 435
6bb46007 436 response = self._download_json(
81da8cbc 437 'https://www.udemy.com/api-2.0/courses/%s/cached-subscriber-curriculum-items' % course_id,
6bb46007 438 course_id, 'Downloading course curriculum', query={
81da8cbc 439 'fields[chapter]': 'title,object_index',
03caa463 440 'fields[lecture]': 'title,asset',
81da8cbc
S
441 'page_size': '1000',
442 })
443
4d402db5 444 entries = []
81da8cbc
S
445 chapter, chapter_number = [None] * 2
446 for entry in response['results']:
447 clazz = entry.get('_class')
448 if clazz == 'lecture':
03caa463
S
449 asset = entry.get('asset')
450 if isinstance(asset, dict):
451 asset_type = asset.get('asset_type') or asset.get('assetType')
452 if asset_type != 'Video':
453 continue
81da8cbc
S
454 lecture_id = entry.get('id')
455 if lecture_id:
4d402db5
S
456 entry = {
457 '_type': 'url_transparent',
b53a06e3 458 'url': 'https://www.udemy.com/%s/learn/v4/t/lecture/%s' % (course_path, entry['id']),
81da8cbc 459 'title': entry.get('title'),
4d402db5
S
460 'ie_key': UdemyIE.ie_key(),
461 }
5bafcf65
S
462 if chapter_number:
463 entry['chapter_number'] = chapter_number
4d402db5
S
464 if chapter:
465 entry['chapter'] = chapter
466 entries.append(entry)
81da8cbc
S
467 elif clazz == 'chapter':
468 chapter_number = entry.get('object_index')
469 chapter = entry.get('title')
e5de3f6c 470
81da8cbc 471 return self.playlist_result(entries, course_id, title)