forked from minhngoc25a/yt-dlc
[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
|
# 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',
|
'url': 'https://www.udemy.com/learn-web-development-complete-step-by-step-guide-to-success/learn/v4/t/lecture/4125812',
|
||||||
'only_matching': True,
|
'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):
|
def _extract_course_info(self, webpage, video_id):
|
||||||
|
@ -357,6 +361,12 @@ class UdemyIE(InfoExtractor):
|
||||||
fatal=False)
|
fatal=False)
|
||||||
extract_subtitles(text_tracks)
|
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'))
|
self._sort_formats(formats, field_preference=('height', 'width', 'tbr', 'format_id'))
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue