]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/lynda.py
[README.md] Document format_id field in output template section (#6557)
[yt-dlp.git] / youtube_dl / extractor / lynda.py
CommitLineData
a7c26e73
PH
1from __future__ import unicode_literals
2
c7f8537d 3import re
4import json
5
6from .common import InfoExtractor
1cc79574
PH
7from ..compat import (
8 compat_str,
7ee40b5d 9 compat_urllib_parse,
10 compat_urllib_request,
1cc79574
PH
11)
12from ..utils import (
16ff7ebc
S
13 ExtractorError,
14 int_or_none,
7ee40b5d 15)
c7f8537d 16
17
30cbd4e0
S
18class LyndaBaseIE(InfoExtractor):
19 _LOGIN_URL = 'https://www.lynda.com/login/login.aspx'
30cbd4e0 20 _ACCOUNT_CREDENTIALS_HINT = 'Use --username and --password options to provide lynda.com account credentials.'
499bfcbf 21 _NETRC_MACHINE = 'lynda'
30cbd4e0
S
22
23 def _real_initialize(self):
24 self._login()
25
26 def _login(self):
27 (username, password) = self._get_login_info()
28 if username is None:
29 return
30
31 login_form = {
2988835a
S
32 'username': username.encode('utf-8'),
33 'password': password.encode('utf-8'),
30cbd4e0
S
34 'remember': 'false',
35 'stayPut': 'false'
36 }
37 request = compat_urllib_request.Request(
b4dea075 38 self._LOGIN_URL, compat_urllib_parse.urlencode(login_form).encode('utf-8'))
30cbd4e0
S
39 login_page = self._download_webpage(
40 request, None, 'Logging in as %s' % username)
41
42 # Not (yet) logged in
5b7dab2d 43 m = re.search(r'loginResultJson\s*=\s*\'(?P<json>[^\']+)\';', login_page)
30cbd4e0
S
44 if m is not None:
45 response = m.group('json')
46 response_json = json.loads(response)
47 state = response_json['state']
48
49 if state == 'notlogged':
50 raise ExtractorError(
51 'Unable to login, incorrect username and/or password',
52 expected=True)
53
54 # This is when we get popup:
55 # > You're already logged in to lynda.com on two devices.
56 # > If you log in here, we'll log you out of another device.
57 # So, we need to confirm this.
58 if state == 'conflicted':
59 confirm_form = {
60 'username': '',
61 'password': '',
62 'resolve': 'true',
63 'remember': 'false',
64 'stayPut': 'false',
65 }
66 request = compat_urllib_request.Request(
62cca96b 67 self._LOGIN_URL, compat_urllib_parse.urlencode(confirm_form).encode('utf-8'))
30cbd4e0
S
68 login_page = self._download_webpage(
69 request, None,
70 'Confirming log in and log out from another device')
71
5b7dab2d 72 if all(not re.search(p, login_page) for p in ('isLoggedIn\s*:\s*true', r'logout\.aspx', r'>Log out<')):
30cbd4e0
S
73 raise ExtractorError('Unable to log in')
74
75
76class LyndaIE(LyndaBaseIE):
a7c26e73
PH
77 IE_NAME = 'lynda'
78 IE_DESC = 'lynda.com videos'
30cbd4e0 79 _VALID_URL = r'https?://www\.lynda\.com/(?:[^/]+/[^/]+/\d+|player/embed)/(?P<id>\d+)'
7ee40b5d 80 _NETRC_MACHINE = 'lynda'
81
7ee40b5d 82 _TIMECODE_REGEX = r'\[(?P<timecode>\d+:\d+:\d+[\.,]\d+)\]'
83
a0d64613 84 _TESTS = [{
a7c26e73 85 'url': 'http://www.lynda.com/Bootstrap-tutorials/Using-exercise-files/110885/114408-4.html',
a7c26e73 86 'md5': 'ecfc6862da89489161fb9cd5f5a6fac1',
ac260dd8 87 'info_dict': {
136db788
S
88 'id': '114408',
89 'ext': 'mp4',
a7c26e73
PH
90 'title': 'Using the exercise files',
91 'duration': 68
c7f8537d 92 }
a0d64613
S
93 }, {
94 'url': 'https://www.lynda.com/player/embed/133770?tr=foo=1;bar=g;fizz=rt&fs=0',
95 'only_matching': True,
96 }]
7ee40b5d 97
c7f8537d 98 def _real_extract(self, url):
30cbd4e0 99 video_id = self._match_id(url)
c7f8537d 100
30cbd4e0
S
101 page = self._download_webpage(
102 'http://www.lynda.com/ajax/player?videoId=%s&type=video' % video_id,
103 video_id, 'Downloading video JSON')
c7f8537d 104 video_json = json.loads(page)
105
7ee40b5d 106 if 'Status' in video_json:
30cbd4e0
S
107 raise ExtractorError(
108 'lynda returned error: %s' % video_json['Message'], expected=True)
c7f8537d 109
a7c26e73 110 if video_json['HasAccess'] is False:
136db788 111 raise ExtractorError(
30cbd4e0
S
112 'Video %s is only available for members. '
113 % video_id + self._ACCOUNT_CREDENTIALS_HINT, expected=True)
c7f8537d 114
136db788 115 video_id = compat_str(video_json['ID'])
a7c26e73
PH
116 duration = video_json['DurationInSeconds']
117 title = video_json['Title']
c7f8537d 118
16ff7ebc
S
119 formats = []
120
121 fmts = video_json.get('Formats')
122 if fmts:
123 formats.extend([
124 {
125 'url': fmt['Url'],
a7c26e73
PH
126 'ext': fmt['Extension'],
127 'width': fmt['Width'],
128 'height': fmt['Height'],
129 'filesize': fmt['FileSize'],
62bcfa8c 130 'format_id': str(fmt['Resolution'])
16ff7ebc
S
131 } for fmt in fmts])
132
133 prioritized_streams = video_json.get('PrioritizedStreams')
134 if prioritized_streams:
135 formats.extend([
136 {
137 'url': video_url,
138 'width': int_or_none(format_id),
139 'format_id': format_id,
140 } for format_id, video_url in prioritized_streams['0'].items()
141 ])
c7f8537d 142
a57e8ce6 143 self._check_formats(formats, video_id)
c7f8537d 144 self._sort_formats(formats)
7ee40b5d 145
311c3938 146 subtitles = self.extract_subtitles(video_id, page)
7ee40b5d 147
c7f8537d 148 return {
149 'id': video_id,
150 'title': title,
151 'duration': duration,
62bcfa8c 152 'subtitles': subtitles,
c7f8537d 153 'formats': formats
154 }
7ee40b5d 155
311c3938
JMF
156 def _fix_subtitles(self, subs):
157 srt = ''
7594be85 158 seq_counter = 0
311c3938
JMF
159 for pos in range(0, len(subs) - 1):
160 seq_current = subs[pos]
161 m_current = re.match(self._TIMECODE_REGEX, seq_current['Timecode'])
162 if m_current is None:
163 continue
164 seq_next = subs[pos + 1]
165 m_next = re.match(self._TIMECODE_REGEX, seq_next['Timecode'])
166 if m_next is None:
62bcfa8c 167 continue
311c3938
JMF
168 appear_time = m_current.group('timecode')
169 disappear_time = m_next.group('timecode')
7594be85
S
170 text = seq_current['Caption'].strip()
171 if text:
172 seq_counter += 1
173 srt += '%s\r\n%s --> %s\r\n%s\r\n\r\n' % (seq_counter, appear_time, disappear_time, text)
311c3938
JMF
174 if srt:
175 return srt
176
177 def _get_subtitles(self, video_id, webpage):
62bcfa8c 178 url = 'http://www.lynda.com/ajax/player?videoId=%s&type=transcript' % video_id
311c3938
JMF
179 subs = self._download_json(url, None, False)
180 if subs:
181 return {'en': [{'ext': 'srt', 'data': self._fix_subtitles(subs)}]}
182 else:
183 return {}
c7f8537d 184
185
30cbd4e0 186class LyndaCourseIE(LyndaBaseIE):
a7c26e73
PH
187 IE_NAME = 'lynda:course'
188 IE_DESC = 'lynda.com online courses'
c7f8537d 189
190 # Course link equals to welcome/introduction video link of same course
191 # We will recognize it as course link
192 _VALID_URL = r'https?://(?:www|m)\.lynda\.com/(?P<coursepath>[^/]+/[^/]+/(?P<courseid>\d+))-\d\.html'
193
194 def _real_extract(self, url):
195 mobj = re.match(self._VALID_URL, url)
196 course_path = mobj.group('coursepath')
197 course_id = mobj.group('courseid')
5f6a1245 198
30cbd4e0
S
199 page = self._download_webpage(
200 'http://www.lynda.com/ajax/player?courseId=%s&type=course' % course_id,
201 course_id, 'Downloading course JSON')
c7f8537d 202 course_json = json.loads(page)
203
a7c26e73 204 if 'Status' in course_json and course_json['Status'] == 'NotFound':
30cbd4e0
S
205 raise ExtractorError(
206 'Course %s does not exist' % course_id, expected=True)
c7f8537d 207
208 unaccessible_videos = 0
209 videos = []
210
16ff7ebc
S
211 # Might want to extract videos right here from video['Formats'] as it seems 'Formats' is not provided
212 # by single video API anymore
213
a7c26e73
PH
214 for chapter in course_json['Chapters']:
215 for video in chapter['Videos']:
30cbd4e0 216 if video['HasAccess'] is False:
c7f8537d 217 unaccessible_videos += 1
218 continue
a7c26e73 219 videos.append(video['ID'])
c7f8537d 220
221 if unaccessible_videos > 0:
30cbd4e0
S
222 self._downloader.report_warning(
223 '%s videos are only available for members (or paid members) and will not be downloaded. '
224 % unaccessible_videos + self._ACCOUNT_CREDENTIALS_HINT)
c7f8537d 225
a7c26e73 226 entries = [
30cbd4e0
S
227 self.url_result(
228 'http://www.lynda.com/%s/%s-4.html' % (course_path, video_id),
229 'Lynda')
a7c26e73 230 for video_id in videos]
c7f8537d 231
a7c26e73 232 course_title = course_json['Title']
c7f8537d 233
5f6a1245 234 return self.playlist_result(entries, course_id, course_title)