mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[udemy] Extract outputs renditions (closes #16289, closes #16291, closes #16320, closes #16321, closes #16334, closes #16335)
This commit is contained in:
		| @@ -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 { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․