diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-01-26 00:33:42 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-01-26 00:33:42 +0600 |
commit | a57e8ce6580202c179c38a15abc31f84ca471521 (patch) | |
tree | e37688124b2343d5e8799115c3b38af8e62a2610 /youtube_dl | |
parent | 96a53167fa64293506f446d0c2bf3e0db6c8df31 (diff) |
[lynda] Pre-test video URLs for HTTP errors (Closes #2185, closes #4782)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/lynda.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py index 26e84970d..762cefa34 100644 --- a/youtube_dl/extractor/lynda.py +++ b/youtube_dl/extractor/lynda.py @@ -85,6 +85,7 @@ class LyndaIE(SubtitlesInfoExtractor): } for format_id, video_url in prioritized_streams['0'].items() ]) + self._check_formats(formats, video_id) self._sort_formats(formats) if self._downloader.params.get('listsubtitles', False): |