youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f012823082c893c0fc1f96afb8a91f5b1c1ae07a
parent 16597c2f9492651c55e01f441ee9cb5c276209cb
Author: Hakim Boyles <hak@volkanite.net>
Date:   Thu, 29 Nov 2018 14:20:27 -0400

[lynda] Fix authentication (closes #18158)


Diffstat:
Myoutube_dl/extractor/lynda.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py @@ -15,7 +15,7 @@ from ..utils import ( class LyndaBaseIE(InfoExtractor): - _SIGNIN_URL = 'https://www.lynda.com/signin' + _SIGNIN_URL = 'https://www.lynda.com/signin/lynda' _PASSWORD_URL = 'https://www.lynda.com/signin/password' _USER_URL = 'https://www.lynda.com/signin/user' _ACCOUNT_CREDENTIALS_HINT = 'Use --username and --password options to provide lynda.com account credentials.'