logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: a5cd0eb8a4f2661cfe4863e958172d8f8f42d0f1
parent c23e266427ef7fdcff3dc02e0d9978c58addea6c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 21 Nov 2015 08:32:48 +0600

[pluralsight:course] Improve _VALID_URL

Diffstat:

Myoutube_dl/extractor/pluralsight.py5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/pluralsight.py b/youtube_dl/extractor/pluralsight.py @@ -175,7 +175,7 @@ class PluralsightIE(InfoExtractor): class PluralsightCourseIE(InfoExtractor): IE_NAME = 'pluralsight:course' - _VALID_URL = r'https?://(?:www\.)?pluralsight\.com/courses/(?P<id>[^/]+)' + _VALID_URL = r'https?://(?:(?:www|app)\.)?pluralsight\.com/(?:library/)?courses/(?P<id>[^/]+)' _TESTS = [{ # 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 @@ -190,6 +190,9 @@ class PluralsightCourseIE(InfoExtractor): # available without pluralsight account 'url': 'https://www.pluralsight.com/courses/angularjs-get-started', 'only_matching': True, + }, { + 'url': 'https://app.pluralsight.com/library/courses/understanding-microsoft-azure-amazon-aws/table-of-contents', + 'only_matching': True, }] def _real_extract(self, url):