mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[ndr] Improve thumbnail extraction
This commit is contained in:
parent
8dfa187b8a
commit
4ea5c7b70d
@ -71,7 +71,7 @@ class NDRIE(InfoExtractor):
|
|||||||
thumbnails = re.findall(r'''\d+: {src: "([^"]+)"(?: \|\| '[^']+')?, quality: '([^']+)'}''', page)
|
thumbnails = re.findall(r'''\d+: {src: "([^"]+)"(?: \|\| '[^']+')?, quality: '([^']+)'}''', page)
|
||||||
if thumbnails:
|
if thumbnails:
|
||||||
QUALITIES = ['xs', 's', 'm', 'l', 'xl']
|
QUALITIES = ['xs', 's', 'm', 'l', 'xl']
|
||||||
thumbnails.sort(key=lambda thumb: QUALITIES.index(thumb[1]))
|
thumbnails.sort(key=lambda thumb: QUALITIES.index(thumb[1]) if thumb[1] in QUALITIES else -1)
|
||||||
thumbnail = 'http://www.ndr.de' + thumbnails[-1][0]
|
thumbnail = 'http://www.ndr.de' + thumbnails[-1][0]
|
||||||
|
|
||||||
for format_id in ['lo', 'hi', 'hq']:
|
for format_id in ['lo', 'hi', 'hq']:
|
||||||
|
Loading…
Reference in New Issue
Block a user