]>
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=["\'].*\bcourse
=({.+?
})[;"\']', 
  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         headers 
= kwargs
.get('headers', {}).copy() 
 126         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' 
 127         kwargs
['headers'] = headers
 
 128         return super(UdemyIE
, self
)._download
_webpage
_handle
( 
 129             *args
, **compat_kwargs(kwargs
)) 
 131     def _download_json(self
, url_or_request
, *args
, **kwargs
): 
 133             'X-Udemy-Snail-Case': 'true', 
 134             'X-Requested-With': 'XMLHttpRequest', 
 136         for cookie 
in self
._downloader
.cookiejar
: 
 137             if cookie
.name 
== 'client_id': 
 138                 headers
['X-Udemy-Client-Id'] = cookie
.value
 
 139             elif cookie
.name 
== 'access_token': 
 140                 headers
['X-Udemy-Bearer-Token'] = cookie
.value
 
 141                 headers
['X-Udemy-Authorization'] = 'Bearer %s' % cookie
.value
 
 143         if isinstance(url_or_request
, compat_urllib_request
.Request
): 
 144             for header
, value 
in headers
.items(): 
 145                 url_or_request
.add_header(header
, value
) 
 147             url_or_request 
= sanitized_Request(url_or_request
, headers
=headers
) 
 149         response 
= super(UdemyIE
, self
)._download
_json
(url_or_request
, *args
, **kwargs
) 
 150         self
._handle
_error
(response
) 
 153     def _real_initialize(self
): 
 157         username
, password 
= self
._get
_login
_info
() 
 161         login_popup 
= self
._download
_webpage
( 
 162             self
._LOGIN
_URL
, None, 'Downloading login popup') 
 164         def is_logged(webpage
): 
 165             return any(re
.search(p
, webpage
) for p 
in ( 
 166                 r
'href=["\'](?
:https
://www\
.udemy\
.com
)?
/user
/logout
/', 
 170         if is_logged(login_popup): 
 173         login_form = self._form_hidden_inputs('login
-form
', login_popup) 
 177             'password
': password, 
 180         response = self._download_webpage( 
 181             self._LOGIN_URL, None, 'Logging 
in', 
 182             data=urlencode_postdata(login_form), 
 184                 'Referer
': self._ORIGIN_URL, 
 185                 'Origin
': self._ORIGIN_URL, 
 188         if not is_logged(response): 
 189             error = self._html_search_regex( 
 190                 r'(?s
)<div
[^
>]+class="form-errors[^"]*">(.+?)</div>', 
 191                 response, 'error message', default=None) 
 193                 raise ExtractorError('Unable to login: %s' % error, expected=True) 
 194             raise ExtractorError('Unable to log in') 
 196     def _real_extract(self, url): 
 197         lecture_id = self._match_id(url) 
 199         webpage = self._download_webpage(url, lecture_id) 
 201         course_id, _ = self._extract_course_info(webpage, lecture_id) 
 204             lecture = self._download_lecture(course_id, lecture_id) 
 205         except ExtractorError as e: 
 206             # Error could possibly mean we are not enrolled in the course 
 207             if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403: 
 208                 self._enroll_course(url, webpage, course_id) 
 209                 lecture = self._download_lecture(course_id, lecture_id) 
 213         title = lecture['title'] 
 214         description = lecture.get('description') 
 216         asset = lecture['asset'] 
 218         asset_type = asset.get('asset_type') or asset.get('assetType') 
 219         if asset_type != 'Video': 
 220             raise ExtractorError( 
 221                 'Lecture %s is not a video' % lecture_id, expected=True) 
 223         stream_url = asset.get('stream_url') or asset.get('streamUrl') 
 225             youtube_url = self._search_regex( 
 226                 r'(https?://www\.youtube\.com/watch\?v=.*)', stream_url, 'youtube URL', default=None) 
 228                 return self.url_result(youtube_url, 'Youtube') 
 230         video_id = compat_str(asset['id']) 
 231         thumbnail = asset.get('thumbnail_url') or asset.get('thumbnailUrl') 
 232         duration = float_or_none(asset.get('data', {}).get('duration')) 
 235         automatic_captions = {} 
 239         def extract_output_format(src, f_id): 
 241                 'url': src.get('url'), 
 242                 'format_id': '%sp' % (src.get('height') or f_id), 
 243                 'width': int_or_none(src.get('width')), 
 244                 'height': int_or_none(src.get('height')), 
 245                 'vbr': int_or_none(src.get('video_bitrate_in_kbps')), 
 246                 'vcodec': src.get('video_codec'), 
 247                 'fps': int_or_none(src.get('frame_rate')), 
 248                 'abr': int_or_none(src.get('audio_bitrate_in_kbps')), 
 249                 'acodec': src.get('audio_codec'), 
 250                 'asr': int_or_none(src.get('audio_sample_rate')), 
 251                 'tbr': int_or_none(src.get('total_bitrate_in_kbps')), 
 252                 'filesize': int_or_none(src.get('file_size_in_bytes')), 
 255         outputs = asset.get('data', {}).get('outputs') 
 256         if not isinstance(outputs, dict): 
 259         def add_output_format_meta(f, key): 
 260             output = outputs.get(key) 
 261             if isinstance(output, dict): 
 262                 output_format = extract_output_format(output, key) 
 263                 output_format.update(f) 
 267         def extract_formats(source_list): 
 268             if not isinstance(source_list, list): 
 270             for source in source_list: 
 271                 video_url = url_or_none(source.get('file') or source.get('src')) 
 274                 if source.get('type') == 'application/x-mpegURL' or determine_ext(video_url) == 'm3u8': 
 275                     formats.extend(self._extract_m3u8_formats( 
 276                         video_url, video_id, 'mp4', entry_protocol='m3u8_native', 
 277                         m3u8_id='hls', fatal=False)) 
 279                 format_id = source.get('label') 
 282                     'format_id': '%sp' % format_id, 
 283                     'height': int_or_none(format_id), 
 286                     # Some videos contain additional metadata (e.g. 
 287                     # https://www.udemy.com/ios9-swift/learn/#/lecture/3383208) 
 288                     f = add_output_format_meta(f, format_id) 
 291         def extract_subtitles(track_list): 
 292             if not isinstance(track_list, list): 
 294             for track in track_list: 
 295                 if not isinstance(track, dict): 
 297                 if track.get('kind') != 'captions': 
 299                 src = url_or_none(track.get('src')) 
 302                 lang = track.get('language') or track.get( 
 303                     'srclang') or track.get('label') 
 304                 sub_dict = automatic_captions if track.get( 
 305                     'autogenerated') is True else subtitles 
 306                 sub_dict.setdefault(lang, []).append({ 
 310         for url_kind in ('download', 'stream'): 
 311             urls = asset.get('%s_urls' % url_kind) 
 312             if isinstance(urls, dict): 
 313                 extract_formats(urls.get('Video')) 
 315         captions = asset.get('captions') 
 316         if isinstance(captions, list): 
 318                 if not isinstance(cc, dict): 
 320                 cc_url = url_or_none(cc.get('url')) 
 323                 lang = try_get(cc, lambda x: x['locale']['locale'], compat_str) 
 324                 sub_dict = (automatic_captions if cc.get('source') == 'auto' 
 326                 sub_dict.setdefault(lang or 'en', []).append({ 
 330         view_html = lecture.get('view_html') 
 332             view_html_urls = set() 
 333             for source in re.findall(r'<source[^>]+>', view_html): 
 334                 attributes = extract_attributes(source) 
 335                 src = attributes.get('src') 
 338                 res = attributes.get('data-res') 
 339                 height = int_or_none(res) 
 340                 if src in view_html_urls: 
 342                 view_html_urls.add(src) 
 343                 if attributes.get('type') == 'application/x-mpegURL' or determine_ext(src) == 'm3u8': 
 344                     m3u8_formats = self._extract_m3u8_formats( 
 345                         src, video_id, 'mp4', entry_protocol='m3u8_native', 
 346                         m3u8_id='hls', fatal=False) 
 347                     for f in m3u8_formats: 
 348                         m = re.search(r'/hls_(?P<height>\d{3,4})_(?P<tbr>\d{2,})/', f['url']) 
 350                             if not f.get('height'): 
 351                                 f['height'] = int(m.group('height')) 
 353                                 f['tbr'] = int(m.group('tbr')) 
 354                     formats.extend(m3u8_formats) 
 356                     formats.append(add_output_format_meta({ 
 358                         'format_id': '%dp' % height if height else None, 
 362             # react rendition since 2017.04.15 (see 
 363             # https://github.com/rg3/youtube-dl/issues/12744) 
 364             data = self._parse_json( 
 366                     r'videojs-setup-data=(["\'])(?P
<data
>{.+?
})\
1', view_html, 
 367                     'setup data
', default='{}', group='data
'), video_id, 
 368                 transform_source=unescapeHTML, fatal=False) 
 369             if data and isinstance(data, dict): 
 370                 extract_formats(data.get('sources
')) 
 372                     duration = int_or_none(data.get('duration
')) 
 373                 extract_subtitles(data.get('tracks
')) 
 375             if not subtitles and not automatic_captions: 
 376                 text_tracks = self._parse_json( 
 378                         r'text
-tracks
=(["\'])(?P<data>\[.+?\])\1', view_html, 
 379                         'text tracks', default='{}', group='data'), video_id, 
 380                     transform_source=lambda s: js_to_json(unescapeHTML(s)), 
 382                 extract_subtitles(text_tracks) 
 384         if not formats and outputs: 
 385             for format_id, output in outputs.items(): 
 386                 f = extract_output_format(output, format_id) 
 390         self._sort_formats(formats, field_preference=('height', 'width', 'tbr', 'format_id')) 
 395             'description': description, 
 396             'thumbnail': thumbnail, 
 397             'duration': duration, 
 399             'subtitles': subtitles, 
 400             'automatic_captions': automatic_captions, 
 404 class UdemyCourseIE(UdemyIE): 
 405     IE_NAME = 'udemy:course' 
 406     _VALID_URL = r'https?://(?:www\.)?udemy\.com/(?P<id>[^/?#&]+)' 
 410     def suitable(cls, url): 
 411         return False if UdemyIE.suitable(url) else super(UdemyCourseIE, cls).suitable(url) 
 413     def _real_extract(self, url): 
 414         course_path = self._match_id(url) 
 416         webpage = self._download_webpage(url, course_path) 
 418         course_id, title = self._extract_course_info(webpage, course_path) 
 420         self._enroll_course(url, webpage, course_id) 
 422         response = self._download_json( 
 423             'https://www.udemy.com/api-2.0/courses/%s/cached-subscriber-curriculum-items' % course_id, 
 424             course_id, 'Downloading course curriculum', query={ 
 425                 'fields[chapter]': 'title,object_index', 
 426                 'fields[lecture]': 'title,asset', 
 431         chapter, chapter_number = [None] * 2 
 432         for entry in response['results']: 
 433             clazz = entry.get('_class') 
 434             if clazz == 'lecture': 
 435                 asset = entry.get('asset') 
 436                 if isinstance(asset, dict): 
 437                     asset_type = asset.get('asset_type') or asset.get('assetType') 
 438                     if asset_type != 'Video': 
 440                 lecture_id = entry.get('id') 
 443                         '_type': 'url_transparent', 
 444                         'url': 'https://www.udemy.com/%s/learn/v4/t/lecture/%s' % (course_path, entry['id']), 
 445                         'title': entry.get('title'), 
 446                         'ie_key': UdemyIE.ie_key(), 
 449                         entry['chapter_number'] = chapter_number 
 451                         entry['chapter'] = chapter 
 452                     entries.append(entry) 
 453             elif clazz == 'chapter': 
 454                 chapter_number = entry.get('object_index') 
 455                 chapter = entry.get('title') 
 457         return self.playlist_result(entries, course_id, title)