1 from __future__
import unicode_literals
8 from .common
import InfoExtractor
20 srt_subtitles_timecode
,
26 class PluralsightBaseIE(InfoExtractor
):
27 _API_BASE
= 'https://app.pluralsight.com'
30 class PluralsightIE(PluralsightBaseIE
):
31 IE_NAME
= 'pluralsight'
32 _VALID_URL
= r
'https?://(?:(?:www|app)\.)?pluralsight\.com/(?:training/)?player\?'
33 _LOGIN_URL
= 'https://app.pluralsight.com/id/'
35 _NETRC_MACHINE
= 'pluralsight'
38 'url': 'http://www.pluralsight.com/training/player?author=mike-mckeown&name=hosting-sql-server-windows-azure-iaas-m7-mgmt&mode=live&clip=3&course=hosting-sql-server-windows-azure-iaas',
39 'md5': '4d458cf5cf4c593788672419a8dd4cf8',
41 'id': 'hosting-sql-server-windows-azure-iaas-m7-mgmt-04',
43 'title': 'Demo Monitoring',
46 'skip': 'Requires pluralsight account credentials',
48 'url': 'https://app.pluralsight.com/training/player?course=angularjs-get-started&author=scott-allen&name=angularjs-get-started-m1-introduction&clip=0&mode=live',
49 'only_matching': True,
51 # available without pluralsight account
52 'url': 'http://app.pluralsight.com/training/player?author=scott-allen&name=angularjs-get-started-m1-introduction&mode=live&clip=0&course=angularjs-get-started',
53 'only_matching': True,
55 'url': 'https://app.pluralsight.com/player?course=ccna-intro-networking&author=ross-bagurdes&name=ccna-intro-networking-m06&clip=0',
56 'only_matching': True,
59 def _real_initialize(self
):
63 (username
, password
) = self
._get
_login
_info
()
67 login_page
= self
._download
_webpage
(
68 self
._LOGIN
_URL
, None, 'Downloading login page')
70 login_form
= self
._hidden
_inputs
(login_page
)
77 post_url
= self
._search
_regex
(
78 r
'<form[^>]+action=(["\'])(?P
<url
>.+?
)\
1', login_page,
79 'post url
', default=self._LOGIN_URL, group='url
')
81 if not post_url.startswith('http
'):
82 post_url = compat_urlparse.urljoin(self._LOGIN_URL, post_url)
84 response = self._download_webpage(
85 post_url, None, 'Logging
in as %s' % username,
86 data=urlencode_postdata(login_form),
87 headers={'Content
-Type
': 'application
/x
-www
-form
-urlencoded
'})
89 error = self._search_regex(
90 r'<span
[^
>]+class="field-validation-error"[^
>]*>([^
<]+)</span
>',
91 response, 'error message
', default=None)
93 raise ExtractorError('Unable to login
: %s' % error, expected=True)
95 if all(p not in response for p in ('__INITIAL_STATE__
', '"currentUser"')):
96 BLOCKED = 'Your account has been blocked due to suspicious activity
'
97 if BLOCKED in response:
99 'Unable to login
: %s' % BLOCKED, expected=True)
100 raise ExtractorError('Unable to log
in')
102 def _get_subtitles(self, author, clip_id, lang, name, duration, video_id):
109 captions = self._download_json(
110 '%s/player
/retrieve
-captions
' % self._API_BASE, video_id,
111 'Downloading captions JSON
', 'Unable to download captions JSON
',
112 fatal=False, data=json.dumps(captions_post).encode('utf
-8'),
113 headers={'Content
-Type
': 'application
/json
;charset
=utf
-8'})
118 'data
': json.dumps(captions),
121 'data
': self._convert_subtitles(duration, captions),
126 def _convert_subtitles(duration, subs):
128 TIME_OFFSET_KEYS = ('displayTimeOffset
', 'DisplayTimeOffset
')
129 TEXT_KEYS = ('text
', 'Text
')
130 for num, current in enumerate(subs):
133 float_or_none(dict_get(current, TIME_OFFSET_KEYS)),
134 dict_get(current, TEXT_KEYS))
135 if start is None or text is None:
137 end = duration if num == len(subs) - 1 else float_or_none(
138 dict_get(subs[num + 1], TIME_OFFSET_KEYS))
141 srt += os.linesep.join(
145 srt_subtitles_timecode(start),
146 srt_subtitles_timecode(end)),
152 def _real_extract(self, url):
153 qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
155 author = qs.get('author
', [None])[0]
156 name = qs.get('name
', [None])[0]
157 clip_id = qs.get('clip
', [None])[0]
158 course_name = qs.get('course
', [None])[0]
160 if any(not f for f in (author, name, clip_id, course_name,)):
161 raise ExtractorError('Invalid URL
', expected=True)
163 display_id = '%s-%s' % (name, clip_id)
165 course = self._download_json(
166 'https
://app
.pluralsight
.com
/player
/user
/api
/v1
/player
/payload
',
167 display_id, data=urlencode_postdata({'courseId
': course_name}),
168 headers={'Referer
': url})
170 collection = course['modules
']
174 for module_ in collection:
175 if name in (module_.get('moduleName
'), module_.get('name
')):
176 for clip_ in module_.get('clips
', []):
177 clip_index = clip_.get('clipIndex
')
178 if clip_index is None:
179 clip_index = clip_.get('index
')
180 if clip_index is None:
182 if compat_str(clip_index) == clip_id:
187 raise ExtractorError('Unable to resolve clip
')
189 title = clip['title
']
192 'low
': {'width
': 640, 'height
': 480},
193 'medium
': {'width
': 848, 'height
': 640},
194 'high
': {'width
': 1024, 'height
': 768},
195 'high
-widescreen
': {'width
': 1280, 'height
': 720},
198 QUALITIES_PREFERENCE = ('low
', 'medium
', 'high
', 'high
-widescreen
',)
199 quality_key = qualities(QUALITIES_PREFERENCE)
201 AllowedQuality = collections.namedtuple('AllowedQuality
', ['ext
', 'qualities
'])
203 ALLOWED_QUALITIES = (
204 AllowedQuality('webm
', ['high
', ]),
205 AllowedQuality('mp4
', ['low
', 'medium
', 'high
', ]),
208 # Some courses also offer widescreen resolution for high quality (see
209 # https://github.com/rg3/youtube-dl/issues/7766)
210 widescreen = course.get('supportsWideScreenVideoFormats
') is True
211 best_quality = 'high
-widescreen
' if widescreen else 'high
'
213 for allowed_quality in ALLOWED_QUALITIES:
214 allowed_quality.qualities.append(best_quality)
216 # In order to minimize the number of calls to ViewClip API and reduce
217 # the probability of being throttled or banned by Pluralsight we will request
218 # only single format until formats listing was explicitly requested.
219 if self._downloader.params.get('listformats
', False):
220 allowed_qualities = ALLOWED_QUALITIES
222 def guess_allowed_qualities():
223 req_format = self._downloader.params.get('format
') or 'best
'
224 req_format_split = req_format.split('-', 1)
225 if len(req_format_split) > 1:
226 req_ext, req_quality = req_format_split
227 for allowed_quality in ALLOWED_QUALITIES:
228 if req_ext == allowed_quality.ext and req_quality in allowed_quality.qualities:
229 return (AllowedQuality(req_ext, (req_quality, )), )
230 req_ext = 'webm
' if self._downloader.params.get('prefer_free_formats
') else 'mp4
'
231 return (AllowedQuality(req_ext, (best_quality, )), )
232 allowed_qualities = guess_allowed_qualities()
235 for ext, qualities_ in allowed_qualities:
236 for quality in qualities_:
237 f = QUALITIES[quality].copy()
240 'includeCaptions
': False,
241 'clipIndex
': int(clip_id),
242 'courseName
': course_name,
246 'quality
': '%dx%d' % (f['width
'], f['height
']),
248 format_id = '%s-%s' % (ext, quality)
249 viewclip = self._download_json(
250 '%s/video
/clips
/viewclip
' % self._API_BASE, display_id,
251 'Downloading
%s viewclip JSON
' % format_id, fatal=False,
252 data=json.dumps(clip_post).encode('utf
-8'),
253 headers={'Content
-Type
': 'application
/json
;charset
=utf
-8'})
255 # Pluralsight tracks multiple sequential calls to ViewClip API and start
256 # to return 429 HTTP errors after some time (see
257 # https://github.com/rg3/youtube-dl/pull/6989). Moreover it may even lead
258 # to account ban (see https://github.com/rg3/youtube-dl/issues/6842).
259 # To somewhat reduce the probability of these consequences
260 # we will sleep random amount of time before each call to ViewClip.
262 random.randint(2, 5), display_id,
263 '%(video_id)s: Waiting
for %(timeout)s seconds to avoid throttling
')
268 clip_urls = viewclip.get('urls
')
269 if not isinstance(clip_urls, list):
272 for clip_url_data in clip_urls:
273 clip_url = clip_url_data.get('url
')
276 cdn = clip_url_data.get('cdn
')
281 'format_id
': '%s-%s' % (format_id, cdn) if cdn else format_id,
282 'quality
': quality_key(quality),
283 'source_preference
': int_or_none(clip_url_data.get('rank
')),
285 formats.append(clip_f)
287 self._sort_formats(formats)
289 duration = int_or_none(
290 clip.get('duration
')) or parse_duration(clip.get('formattedDuration
'))
292 # TODO: other languages?
293 subtitles = self.extract_subtitles(
294 author, clip_id, 'en
', name, duration, display_id)
297 'id': clip.get('clipName
') or clip['name
'],
299 'duration
': duration,
302 'subtitles
': subtitles,
306 class PluralsightCourseIE(PluralsightBaseIE):
307 IE_NAME = 'pluralsight
:course
'
308 _VALID_URL = r'https?
://(?
:(?
:www|app
)\
.)?pluralsight\
.com
/(?
:library
/)?courses
/(?P
<id>[^
/]+)'
310 # Free course from Pluralsight Starter Subscription for Microsoft TechNet
311 # https://offers.pluralsight.com/technet?loc=zTS3z&prod=zOTprodz&tech=zOttechz&prog=zOTprogz&type=zSOz&media=zOTmediaz&country=zUSz
312 'url
': 'http
://www
.pluralsight
.com
/courses
/hosting
-sql
-server
-windows
-azure
-iaas
',
314 'id': 'hosting
-sql
-server
-windows
-azure
-iaas
',
315 'title
': 'Hosting SQL Server
in Microsoft Azure IaaS Fundamentals
',
316 'description
': 'md5
:61b37e60f21c4b2f91dc621a977d0986
',
318 'playlist_count
': 31,
320 # available without pluralsight account
321 'url
': 'https
://www
.pluralsight
.com
/courses
/angularjs
-get
-started
',
322 'only_matching
': True,
324 'url
': 'https
://app
.pluralsight
.com
/library
/courses
/understanding
-microsoft
-azure
-amazon
-aws
/table
-of
-contents
',
325 'only_matching
': True,
328 def _real_extract(self, url):
329 course_id = self._match_id(url)
333 course = self._download_json(
334 '%s/player
/functions
/rpc
' % self._API_BASE, course_id,
335 'Downloading course JSON
',
337 'fn
': 'bootstrapPlayer
',
339 'courseId
': course_id,
343 'Content
-Type
': 'application
/json
;charset
=utf
-8'
344 })['payload
']['course
']
346 title = course['title
']
347 course_name = course['name
']
348 course_data = course['modules
']
349 description = course.get('description
') or course.get('shortDescription
')
352 for num, module in enumerate(course_data, 1):
353 author = module.get('author
')
354 module_name = module.get('name
')
355 if not author or not module_name:
357 for clip in module.get('clips
', []):
358 clip_index = int_or_none(clip.get('index
'))
359 if clip_index is None:
361 clip_url = update_url_query(
362 '%s/player
' % self._API_BASE, query={
364 'course
': course_name,
370 '_type
': 'url_transparent
',
372 'ie_key
': PluralsightIE.ie_key(),
373 'chapter
': module.get('title
'),
374 'chapter_number
': num,
375 'chapter_id
': module.get('moduleRef
'),
378 return self.playlist_result(entries, course_id, title, description)