projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca9cd29
)
[tudou] Sort qualities by numeric value
author
Naglis Jonaitis
<njonaitis@gmail.com>
Sun, 31 Aug 2014 20:14:35 +0000
(23:14 +0300)
committer
Naglis Jonaitis
<njonaitis@gmail.com>
Sun, 31 Aug 2014 20:14:35 +0000
(23:14 +0300)
youtube_dl/extractor/tudou.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/tudou.py
b/youtube_dl/extractor/tudou.py
index 96e0732bd3e88a4397ef1e2d5d388276b09cea37..23816599c6d7d2270361adb66bec35168acdcb29 100644
(file)
--- a/
youtube_dl/extractor/tudou.py
+++ b/
youtube_dl/extractor/tudou.py
@@
-58,7
+58,8
@@
class TudouIE(InfoExtractor):
# 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
# Also, filter non-number qualities (see issue #3643).
- quality = sorted(filter(lambda k: k.isdigit(), segments.keys()))[-1]
+ quality = sorted(filter(lambda k: k.isdigit(), segments.keys()),
+ key=lambda k: int(k))[-1]
parts = segments[quality]
result = []
len_parts = len(parts)