[ndr] Fix thumbnail extraction
This commit is contained in:
parent
91994c2c81
commit
1514f74967
1 changed files with 6 additions and 4 deletions
|
@ -66,10 +66,12 @@ class NDRIE(InfoExtractor):
|
||||||
|
|
||||||
video_url = re.search(r'''3: {src:'(?P<video>.+?)\.hi\.mp4', type:"video/mp4"},''', page)
|
video_url = re.search(r'''3: {src:'(?P<video>.+?)\.hi\.mp4', type:"video/mp4"},''', page)
|
||||||
if video_url:
|
if video_url:
|
||||||
thumbnail = self._html_search_regex(r'(?m)title: "NDR PLAYER",\s*poster: "([^"]+)",',
|
thumbnails = re.findall(r'''\d+: {src: "([^"]+)"(?: \|\| '[^']+')?, quality: '([^']+)'}''', page)
|
||||||
page, 'thumbnail', fatal=False)
|
if thumbnails:
|
||||||
if thumbnail:
|
QUALITIES = ['xs', 's', 'm', 'l', 'xl']
|
||||||
thumbnail = 'http://www.ndr.de' + thumbnail
|
thumbnails.sort(key=lambda thumb: QUALITIES.index(thumb[1]))
|
||||||
|
thumbnail = 'http://www.ndr.de' + thumbnails[-1][0]
|
||||||
|
|
||||||
for format_id in ['lo', 'hi', 'hq']:
|
for format_id in ['lo', 'hi', 'hq']:
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': '%s.%s.mp4' % (video_url.group('video'), format_id),
|
'url': '%s.%s.mp4' % (video_url.group('video'), format_id),
|
||||||
|
|
Loading…
Reference in a new issue