1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00

[rtlnl] Match formats only by height

This commit is contained in:
Sergey M․ 2016-05-01 03:20:36 +06:00
parent fc35cd9e0c
commit 9e1b96ae40
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -125,10 +125,12 @@ class RtlNlIE(InfoExtractor):
try:
# Find hls format with the same width and height corresponding
# to progressive format and copy metadata from it.
f = next(f for f in formats
if f.get('width') == width and f.get('height') == height).copy()
f.update(pg_format(format_id, width, height))
pg_formats.append(f)
f = next(f for f in formats if f.get('height') == height)
# hls formats may have invalid width
f['width'] = width
f_copy = f.copy()
f_copy.update(pg_format(format_id, width, height))
pg_formats.append(f_copy)
except StopIteration:
# Missing hls format does mean that no progressive format with
# such width and height exists either.