mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-05 17:12:36 +00:00
[udemy] Extract outputs renditions (closes #16289, closes #16291, closes #16320, closes #16321, closes #16334, closes #16335)
This commit is contained in:
parent
67ca1a8ef7
commit
8513963468
@ -58,6 +58,10 @@ class UdemyIE(InfoExtractor):
|
||||
# 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,
|
||||
}, {
|
||||
# only outputs rendition
|
||||
'url': 'https://www.udemy.com/how-you-can-help-your-local-community-5-amazing-examples/learn/v4/t/lecture/3225750?start=0',
|
||||
'only_matching': True,
|
||||
}]
|
||||
|
||||
def _extract_course_info(self, webpage, video_id):
|
||||
@ -357,6 +361,12 @@ class UdemyIE(InfoExtractor):
|
||||
fatal=False)
|
||||
extract_subtitles(text_tracks)
|
||||
|
||||
if not formats and outputs:
|
||||
for format_id, output in outputs.items():
|
||||
f = extract_output_format(output, format_id)
|
||||
if f.get('url'):
|
||||
formats.append(f)
|
||||
|
||||
self._sort_formats(formats, field_preference=('height', 'width', 'tbr', 'format_id'))
|
||||
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user