[ruutu] Limit resolution split to 2 pieces (Closes #7037, closes #7042)
[youtube-dl] / youtube_dl / extractor / ruutu.py
index 7720f138336deb13b1651726f88185bfbb3850f6..a16b73ff4025fb78a9358282c6f01c523327f8e2 100644 (file)
@@ -74,7 +74,7 @@ class RuutuIE(InfoExtractor):
                         preference = -1 if proto == 'rtmp' else 1
                         label = child.get('label')
                         tbr = int_or_none(child.get('bitrate'))
-                        width, height = [int_or_none(x) for x in child.get('resolution', 'x').split('x')]
+                        width, height = [int_or_none(x) for x in child.get('resolution', 'x').split('x')[:2]]
                         formats.append({
                             'format_id': '%s-%s' % (proto, label if label else tbr),
                             'url': video_url,