[cnn] Improve thumbnail extraction

This commit is contained in:
Philipp Hagemeister 2014-06-07 15:39:21 +02:00
parent d551980823
commit be6d722904
2 changed files with 8 additions and 4 deletions

View file

@ -719,6 +719,8 @@ class YoutubeDL(object):
thumbnails = info_dict.get('thumbnails')
if thumbnails:
thumbnails.sort(key=lambda t: (
t.get('width'), t.get('height'), t.get('url')))
for t in thumbnails:
if 'width' in t and 'height' in t:
t['resolution'] = '%dx%d' % (t['width'], t['height'])