1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-23 04:02:59 +08:00

Lynda has changed their 'SignIn' path

updated path from [website]/signin to [website]signin/lynda
updated path from [website]/signin/password to [website]signin/lynda/password
updated path from [website]/signin/user to [website]signin/lynda/user
This commit is contained in:
harshaadie 2018-11-23 11:36:46 +05:30 committed by GitHub
parent 6864855eb1
commit ca11eba773
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,9 +15,9 @@ from ..utils import (
class LyndaBaseIE(InfoExtractor):
_SIGNIN_URL = 'https://www.lynda.com/signin'
_PASSWORD_URL = 'https://www.lynda.com/signin/password'
_USER_URL = 'https://www.lynda.com/signin/user'
_SIGNIN_URL = 'https://www.lynda.com/signin/lynda'
_PASSWORD_URL = 'https://www.lynda.com/signin/lynda/password'
_USER_URL = 'https://www.lynda.com/signin/lynda/user'
_ACCOUNT_CREDENTIALS_HINT = 'Use --username and --password options to provide lynda.com account credentials.'
_NETRC_MACHINE = 'lynda'