mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-15 19:43:30 +01:00
[pluralsight] Do not require pluralsight account
Looks like some courses are available without pluralsight account
This commit is contained in:
parent
651acffbe5
commit
c23e266427
@ -35,6 +35,10 @@ class PluralsightIE(InfoExtractor):
|
|||||||
}, {
|
}, {
|
||||||
'url': 'https://app.pluralsight.com/training/player?course=angularjs-get-started&author=scott-allen&name=angularjs-get-started-m1-introduction&clip=0&mode=live',
|
'url': 'https://app.pluralsight.com/training/player?course=angularjs-get-started&author=scott-allen&name=angularjs-get-started-m1-introduction&clip=0&mode=live',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
# available without pluralsight account
|
||||||
|
'url': 'http://app.pluralsight.com/training/player?author=scott-allen&name=angularjs-get-started-m1-introduction&mode=live&clip=0&course=angularjs-get-started',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_initialize(self):
|
def _real_initialize(self):
|
||||||
@ -43,7 +47,7 @@ class PluralsightIE(InfoExtractor):
|
|||||||
def _login(self):
|
def _login(self):
|
||||||
(username, password) = self._get_login_info()
|
(username, password) = self._get_login_info()
|
||||||
if username is None:
|
if username is None:
|
||||||
self.raise_login_required('Pluralsight account is required')
|
return
|
||||||
|
|
||||||
login_page = self._download_webpage(
|
login_page = self._download_webpage(
|
||||||
self._LOGIN_URL, None, 'Downloading login page')
|
self._LOGIN_URL, None, 'Downloading login page')
|
||||||
@ -172,7 +176,7 @@ class PluralsightIE(InfoExtractor):
|
|||||||
class PluralsightCourseIE(InfoExtractor):
|
class PluralsightCourseIE(InfoExtractor):
|
||||||
IE_NAME = 'pluralsight:course'
|
IE_NAME = 'pluralsight:course'
|
||||||
_VALID_URL = r'https?://(?:www\.)?pluralsight\.com/courses/(?P<id>[^/]+)'
|
_VALID_URL = r'https?://(?:www\.)?pluralsight\.com/courses/(?P<id>[^/]+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
# Free course from Pluralsight Starter Subscription for Microsoft TechNet
|
# Free course from Pluralsight Starter Subscription for Microsoft TechNet
|
||||||
# https://offers.pluralsight.com/technet?loc=zTS3z&prod=zOTprodz&tech=zOttechz&prog=zOTprogz&type=zSOz&media=zOTmediaz&country=zUSz
|
# https://offers.pluralsight.com/technet?loc=zTS3z&prod=zOTprodz&tech=zOttechz&prog=zOTprogz&type=zSOz&media=zOTmediaz&country=zUSz
|
||||||
'url': 'http://www.pluralsight.com/courses/hosting-sql-server-windows-azure-iaas',
|
'url': 'http://www.pluralsight.com/courses/hosting-sql-server-windows-azure-iaas',
|
||||||
@ -182,7 +186,11 @@ class PluralsightCourseIE(InfoExtractor):
|
|||||||
'description': 'md5:61b37e60f21c4b2f91dc621a977d0986',
|
'description': 'md5:61b37e60f21c4b2f91dc621a977d0986',
|
||||||
},
|
},
|
||||||
'playlist_count': 31,
|
'playlist_count': 31,
|
||||||
}
|
}, {
|
||||||
|
# available without pluralsight account
|
||||||
|
'url': 'https://www.pluralsight.com/courses/angularjs-get-started',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
course_id = self._match_id(url)
|
course_id = self._match_id(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user