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': 'Management of SQL Server - 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
']
172 module, clip = None, None
174 for module_ in collection:
175 if name in (module_.get('moduleName
'), module_.get('name
')):
177 for clip_ in module_.get('clips
', []):
178 clip_index = clip_.get('clipIndex
')
179 if clip_index is None:
180 clip_index = clip_.get('index
')
181 if clip_index is None:
183 if compat_str(clip_index) == clip_id:
188 raise ExtractorError('Unable to resolve clip
')
190 title = '%s - %s' % (module['title
'], clip['title
'])
193 'low
': {'width
': 640, 'height
': 480},
194 'medium
': {'width
': 848, 'height
': 640},
195 'high
': {'width
': 1024, 'height
': 768},
196 'high
-widescreen
': {'width
': 1280, 'height
': 720},
199 QUALITIES_PREFERENCE = ('low
', 'medium
', 'high
', 'high
-widescreen
',)
200 quality_key = qualities(QUALITIES_PREFERENCE)
202 AllowedQuality = collections.namedtuple('AllowedQuality
', ['ext
', 'qualities
'])
204 ALLOWED_QUALITIES = (
205 AllowedQuality('webm
', ['high
', ]),
206 AllowedQuality('mp4
', ['low
', 'medium
', 'high
', ]),
209 # Some courses also offer widescreen resolution for high quality (see
210 # https://github.com/rg3/youtube-dl/issues/7766)
211 widescreen = course.get('supportsWideScreenVideoFormats
') is True
212 best_quality = 'high
-widescreen
' if widescreen else 'high
'
214 for allowed_quality in ALLOWED_QUALITIES:
215 allowed_quality.qualities.append(best_quality)
217 # In order to minimize the number of calls to ViewClip API and reduce
218 # the probability of being throttled or banned by Pluralsight we will request
219 # only single format until formats listing was explicitly requested.
220 if self._downloader.params.get('listformats
', False):
221 allowed_qualities = ALLOWED_QUALITIES
223 def guess_allowed_qualities():
224 req_format = self._downloader.params.get('format
') or 'best
'
225 req_format_split = req_format.split('-', 1)
226 if len(req_format_split) > 1:
227 req_ext, req_quality = req_format_split
228 for allowed_quality in ALLOWED_QUALITIES:
229 if req_ext == allowed_quality.ext and req_quality in allowed_quality.qualities:
230 return (AllowedQuality(req_ext, (req_quality, )), )
231 req_ext = 'webm
' if self._downloader.params.get('prefer_free_formats
') else 'mp4
'
232 return (AllowedQuality(req_ext, (best_quality, )), )
233 allowed_qualities = guess_allowed_qualities()
236 for ext, qualities_ in allowed_qualities:
237 for quality in qualities_:
238 f = QUALITIES[quality].copy()
241 'includeCaptions
': False,
242 'clipIndex
': int(clip_id),
243 'courseName
': course_name,
247 'quality
': '%dx%d' % (f['width
'], f['height
']),
249 format_id = '%s-%s' % (ext, quality)
250 viewclip = self._download_json(
251 '%s/video
/clips
/viewclip
' % self._API_BASE, display_id,
252 'Downloading
%s viewclip JSON
' % format_id, fatal=False,
253 data=json.dumps(clip_post).encode('utf
-8'),
254 headers={'Content
-Type
': 'application
/json
;charset
=utf
-8'})
256 # Pluralsight tracks multiple sequential calls to ViewClip API and start
257 # to return 429 HTTP errors after some time (see
258 # https://github.com/rg3/youtube-dl/pull/6989). Moreover it may even lead
259 # to account ban (see https://github.com/rg3/youtube-dl/issues/6842).
260 # To somewhat reduce the probability of these consequences
261 # we will sleep random amount of time before each call to ViewClip.
263 random.randint(2, 5), display_id,
264 '%(video_id)s: Waiting
for %(timeout)s seconds to avoid throttling
')
269 clip_urls = viewclip.get('urls
')
270 if not isinstance(clip_urls, list):
273 for clip_url_data in clip_urls:
274 clip_url = clip_url_data.get('url
')
277 cdn = clip_url_data.get('cdn
')
282 'format_id
': '%s-%s' % (format_id, cdn) if cdn else format_id,
283 'quality
': quality_key(quality),
284 'source_preference
': int_or_none(clip_url_data.get('rank
')),
286 formats.append(clip_f)
288 self._sort_formats(formats)
290 duration = int_or_none(
291 clip.get('duration
')) or parse_duration(clip.get('formattedDuration
'))
293 # TODO: other languages?
294 subtitles = self.extract_subtitles(
295 author, clip_id, 'en
', name, duration, display_id)
298 'id': clip.get('clipName
') or clip['name
'],
300 'duration
': duration,
303 'subtitles
': subtitles,
307 class PluralsightCourseIE(PluralsightBaseIE):
308 IE_NAME = 'pluralsight
:course
'
309 _VALID_URL = r'https?
://(?
:(?
:www|app
)\
.)?pluralsight\
.com
/(?
:library
/)?courses
/(?P
<id>[^
/]+)'
311 # Free course from Pluralsight Starter Subscription for Microsoft TechNet
312 # https://offers.pluralsight.com/technet?loc=zTS3z&prod=zOTprodz&tech=zOttechz&prog=zOTprogz&type=zSOz&media=zOTmediaz&country=zUSz
313 'url
': 'http
://www
.pluralsight
.com
/courses
/hosting
-sql
-server
-windows
-azure
-iaas
',
315 'id': 'hosting
-sql
-server
-windows
-azure
-iaas
',
316 'title
': 'Hosting SQL Server
in Microsoft Azure IaaS Fundamentals
',
317 'description
': 'md5
:61b37e60f21c4b2f91dc621a977d0986
',
319 'playlist_count
': 31,
321 # available without pluralsight account
322 'url
': 'https
://www
.pluralsight
.com
/courses
/angularjs
-get
-started
',
323 'only_matching
': True,
325 'url
': 'https
://app
.pluralsight
.com
/library
/courses
/understanding
-microsoft
-azure
-amazon
-aws
/table
-of
-contents
',
326 'only_matching
': True,
329 def _real_extract(self, url):
330 course_id = self._match_id(url)
334 course = self._download_json(
335 '%s/player
/functions
/rpc
' % self._API_BASE, course_id,
336 'Downloading course JSON
',
338 'fn
': 'bootstrapPlayer
',
340 'courseId
': course_id,
344 'Content
-Type
': 'application
/json
;charset
=utf
-8'
345 })['payload
']['course
']
347 title = course['title
']
348 course_name = course['name
']
349 course_data = course['modules
']
350 description = course.get('description
') or course.get('shortDescription
')
353 for num, module in enumerate(course_data, 1):
354 author = module.get('author
')
355 module_name = module.get('name
')
356 if not author or not module_name:
358 for clip in module.get('clips
', []):
359 clip_index = int_or_none(clip.get('index
'))
360 if clip_index is None:
362 clip_url = update_url_query(
363 '%s/player
' % self._API_BASE, query={
365 'course
': course_name,
371 '_type
': 'url_transparent
',
373 'ie_key
': PluralsightIE.ie_key(),
374 'chapter
': module.get('title
'),
375 'chapter_number
': num,
376 'chapter_id
': module.get('moduleRef
'),
379 return self.playlist_result(entries, course_id, title, description)