mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	check if key attrib matches resolution pattern
This commit is contained in:
		| @@ -75,9 +75,9 @@ def extract_from_xml_url(ie, video_id, xml_url): | |||||||
|         for node in fnode: |         for node in fnode: | ||||||
|             thumbnail = {'url': node.text} |             thumbnail = {'url': node.text} | ||||||
|             if 'key' in node.attrib: |             if 'key' in node.attrib: | ||||||
|                 width_x_height = node.attrib['key'] |                 if re.match("^[0-9]+x[0-9]+$", node.attrib['key']): | ||||||
|                 thumbnail['width'] = int_or_none(width_x_height.split('x')[0]) |                     thumbnail['width'] = int_or_none(node.attrib['key'].split('x')[0]) | ||||||
|                 thumbnail['height'] = int_or_none(width_x_height.split('x')[1]) |                     thumbnail['height'] = int_or_none(node.attrib['key'].split('x')[1]) | ||||||
|             thumbnails.append(thumbnail) |             thumbnails.append(thumbnail) | ||||||
|         return thumbnails |         return thumbnails | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 kennell
					kennell