mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 10:42:37 +01:00
replaced inefficient code
This commit is contained in:
parent
47f2d01a5a
commit
892015b088
@ -87,29 +87,25 @@ def _real_extract(self, url):
|
||||
format_dict['url'] = elem.find('progressiveDownloadUrl').text
|
||||
format_dict['ext'] = elem.find('mediaType').text.lower()
|
||||
format_dict['format'] = elem.find('profileName').text
|
||||
width = int(elem.find('frameWidth').text)
|
||||
height = int(elem.find('frameHeight').text)
|
||||
format_dict['width'] = width
|
||||
format_dict['height'] = height
|
||||
format_dict['resolution'] = '%dx%d' % (width, height)
|
||||
format_dict['width'] = int(elem.find('frameWidth').text)
|
||||
format_dict['height'] = int(elem.find('frameHeight').text)
|
||||
format_dict['resolution'] = '%dx%d' % (format_dict['width'],
|
||||
format_dict['height'])
|
||||
format_dict['abr'] = int(elem.find('bitrateAudio').text)
|
||||
format_dict['vbr'] = int(elem.find('bitrateVideo').text)
|
||||
format_dict['tbr'] = format_dict['abr'] + format_dict['vbr']
|
||||
format_dict['filesize'] = int(elem.find('fileSize').text)
|
||||
|
||||
# append resolution and dict for sorting by resolution
|
||||
formats_list.append((width * height, format_dict))
|
||||
formats_list.append(format_dict)
|
||||
|
||||
# Sort by resolution (=quality)
|
||||
formats_list.sort()
|
||||
|
||||
out_list = [x[1] for x in formats_list]
|
||||
formats_list.sort(key=lambda x: x['width'] * x['height'])
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': title,
|
||||
'description': description,
|
||||
'formats': out_list,
|
||||
'formats': formats_list,
|
||||
'duration': duration,
|
||||
'webpage_url': webpage_url
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user