mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	Set the ext field for each format
This commit is contained in:
		| @@ -46,6 +46,8 @@ class ArchiveOrgIE(InfoExtractor): | ||||
|             for fn,fdata in data['files'].items() | ||||
|             if 'Video' in fdata['format']] | ||||
|         formats.sort(key=lambda fdata: fdata['file_size']) | ||||
|         for f in formats: | ||||
|             f['ext'] = determine_ext(f['url']) | ||||
|  | ||||
|         info = { | ||||
|             '_type': 'video', | ||||
| @@ -61,7 +63,6 @@ class ArchiveOrgIE(InfoExtractor): | ||||
|             info['thumbnail'] = thumbnail | ||||
|  | ||||
|         # TODO: Remove when #980 has been merged | ||||
|         info['url'] = formats[-1]['url'] | ||||
|         info['ext'] = determine_ext(formats[-1]['url']) | ||||
|         info.update(formats[-1]) | ||||
|  | ||||
|         return info | ||||
| @@ -54,6 +54,7 @@ class DreiSatIE(InfoExtractor): | ||||
|             'width': int(fe.find('./width').text), | ||||
|             'height': int(fe.find('./height').text), | ||||
|             'url': fe.find('./url').text, | ||||
|             'ext': determine_ext(fe.find('./url').text), | ||||
|             'filesize': int(fe.find('./filesize').text), | ||||
|             'video_bitrate': int(fe.find('./videoBitrate').text), | ||||
|             '3sat_qualityname': fe.find('./quality').text, | ||||
| @@ -79,7 +80,6 @@ class DreiSatIE(InfoExtractor): | ||||
|         } | ||||
|  | ||||
|         # TODO: Remove when #980 has been merged | ||||
|         info['url'] = formats[-1]['url'] | ||||
|         info['ext'] = determine_ext(formats[-1]['url']) | ||||
|         info.update(formats[-1]) | ||||
|  | ||||
|         return info | ||||
| @@ -52,6 +52,7 @@ class TriluliluIE(InfoExtractor): | ||||
|             { | ||||
|                 'format': fnode.text, | ||||
|                 'url': video_url_template % fnode.text, | ||||
|                 'ext': fnode.text.partition('-')[0] | ||||
|             } | ||||
|  | ||||
|             for fnode in format_doc.findall('./formats/format') | ||||
| @@ -67,7 +68,6 @@ class TriluliluIE(InfoExtractor): | ||||
|         } | ||||
|  | ||||
|         # TODO: Remove when #980 has been merged | ||||
|         info['url'] = formats[-1]['url'] | ||||
|         info['ext'] = formats[-1]['format'].partition('-')[0] | ||||
|         info.update(formats[-1]) | ||||
|  | ||||
|         return info | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz