if there is more than one subtitle for the language, use the first one
[youtube-dl] / youtube_dl / extractor / adultswim.py
index fdaecdec117d7d8198643c2c58ee5e9a90973af5..a00bfcb35fc8f61b2192592a57776921d0dee9f6 100644 (file)
@@ -110,7 +110,8 @@ class AdultSwimIE(InfoExtractor):
                     'format_id': '%s-%s' % (bitrate, type),
                     'url': file_el.text,
                     'ext': self._video_extensions.get(bitrate, 'mp4'),
-                    'tbr': bitrate,
+                    # The bitrate may not be a number (for example: 'iphone')
+                    'tbr': int(bitrate) if bitrate.isdigit() else None,
                     'height': height,
                     'width': width
                 })