about summary refs log tree commit diff
path: root/youtube_dl/extractor/tudou.py
diff options
context:
space:
mode:
authorNaglis Jonaitis <njonaitis@gmail.com>2014-08-31 23:11:52 +0300
committerNaglis Jonaitis <njonaitis@gmail.com>2014-08-31 23:11:52 +0300
commitca9cd290c7962908c67f344ce97b9092369df7f0 (patch)
treedfc96a3e830f47b2a94d9e4ae78bb0444bc00040 /youtube_dl/extractor/tudou.py
parentf30a38be8b3c32500e168f93f68fc1f36a62b29d (diff)
downloadyoutube-dl-ca9cd290c7962908c67f344ce97b9092369df7f0.tar.gz
youtube-dl-ca9cd290c7962908c67f344ce97b9092369df7f0.tar.xz
youtube-dl-ca9cd290c7962908c67f344ce97b9092369df7f0.zip
[tudou] Fix #3643 - filter non-number qualities
Diffstat (limited to 'youtube_dl/extractor/tudou.py')
-rw-r--r--youtube_dl/extractor/tudou.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/tudou.py b/youtube_dl/extractor/tudou.py
index 7a3891b89..96e0732bd 100644
--- a/youtube_dl/extractor/tudou.py
+++ b/youtube_dl/extractor/tudou.py
@@ -57,7 +57,8 @@ 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()))[-1]
         parts = segments[quality]
         result = []
         len_parts = len(parts)