Browse Source
[udemy] Fix extraction for outputs' format entries without URL (closes #13192)
master
Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
5 additions and
1 deletions
-
youtube_dl/extractor/udemy.py
|
|
@ -52,6 +52,10 @@ class UdemyIE(InfoExtractor): |
|
|
|
# new URL schema |
|
|
|
'url': 'https://www.udemy.com/electric-bass-right-from-the-start/learn/v4/t/lecture/4580906', |
|
|
|
'only_matching': True, |
|
|
|
}, { |
|
|
|
# no url in outputs format entry |
|
|
|
'url': 'https://www.udemy.com/learn-web-development-complete-step-by-step-guide-to-success/learn/v4/t/lecture/4125812', |
|
|
|
'only_matching': True, |
|
|
|
}] |
|
|
|
|
|
|
|
def _extract_course_info(self, webpage, video_id): |
|
|
@ -219,7 +223,7 @@ class UdemyIE(InfoExtractor): |
|
|
|
|
|
|
|
def extract_output_format(src, f_id): |
|
|
|
return { |
|
|
|
'url': src['url'], |
|
|
|
'url': src.get('url'), |
|
|
|
'format_id': '%sp' % (src.get('height') or f_id), |
|
|
|
'width': int_or_none(src.get('width')), |
|
|
|
'height': int_or_none(src.get('height')), |
|
|
|