about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-01 00:17:01 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-01 00:17:01 +0200
commit329818484ce44229835f4b2b02006120b0d81bcf (patch)
tree971582abe2b1b203fb701a858bd53e9744d3635b
parent8bdfddf641b56731c8dcc864f8684e69e6b3fe3c (diff)
parentf931e2595936776380de5df9288a11c04337d780 (diff)
downloadyoutube-dl-329818484ce44229835f4b2b02006120b0d81bcf.tar.gz
youtube-dl-329818484ce44229835f4b2b02006120b0d81bcf.tar.xz
youtube-dl-329818484ce44229835f4b2b02006120b0d81bcf.zip
Merge remote-tracking branch 'naglis/tudou_fix'
-rw-r--r--youtube_dl/extractor/tudou.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tudou.py b/youtube_dl/extractor/tudou.py
index 3da9978b8..a85065121 100644
--- a/youtube_dl/extractor/tudou.py
+++ b/youtube_dl/extractor/tudou.py
@@ -58,7 +58,9 @@ class TudouIE(InfoExtractor):
         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()),
+                         key=lambda k: int(k))[-1]
         parts = segments[quality]
         result = []
         len_parts = len(parts)