Kaynağa Gözat

[ruutu] Limit resolution split to 2 pieces (Closes #7037, closes #7042)

Sergey M․ 10 yıl önce
ebeveyn
işleme
59a9efe85b
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      youtube_dl/extractor/ruutu.py

+ 1 - 1
youtube_dl/extractor/ruutu.py

@@ -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,