simplify thumbnail dict building

This commit is contained in:
kennell 2015-10-18 21:25:26 +02:00
parent b243340f0c
commit b7cedb1604
1 changed files with 4 additions and 3 deletions

View File

@ -75,9 +75,10 @@ def extract_from_xml_url(ie, video_id, xml_url):
for node in fnode:
thumbnail = {'url': node.text}
if 'key' in node.attrib:
if re.match("^[0-9]+x[0-9]+$", node.attrib['key']):
thumbnail['width'] = int_or_none(node.attrib['key'].split('x')[0])
thumbnail['height'] = int_or_none(node.attrib['key'].split('x')[1])
m = re.match('^([0-9]+)x([0-9]+)$', node.attrib['key'])
if m:
thumbnail['width'] = int(m.group(1))
thumbnail['height'] = int(m.group(2))
thumbnails.append(thumbnail)
return thumbnails