mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[tudou] Fix #3643 - filter non-number qualities
This commit is contained in:
parent
f30a38be8b
commit
ca9cd290c7
1 changed files with 2 additions and 1 deletions
|
@ -57,7 +57,8 @@ def _real_extract(self, url):
|
|||
segments = json.loads(segs_json)
|
||||
# It looks like the keys are the arguments that have to be passed as
|
||||
# the hd field in the request url, we pick the higher
|
||||
quality = sorted(segments.keys())[-1]
|
||||
# Also, filter non-number qualities (see issue #3643).
|
||||
quality = sorted(filter(lambda k: k.isdigit(), segments.keys()))[-1]
|
||||
parts = segments[quality]
|
||||
result = []
|
||||
len_parts = len(parts)
|
||||
|
|
Loading…
Reference in a new issue