[ruutu] Don't use fallback for DASH and other non-HTTP urls
[youtube-dl] / youtube_dl / extractor / ruutu.py
index e346434f94a585b86b01ddd5c6ae6f7ac3490541..59e0b12fda155a19a80b14420d5bbcf1e2315d04 100644 (file)
@@ -62,6 +62,8 @@ class RuutuIE(InfoExtractor):
                 formats.extend(self._extract_f4m_formats(url, media_id, f4m_id='hds'))
                 parsed_urls.append(url)
             else:
+                if not fmt.tag.startswith('HTTP'):
+                    continue
                 proto = compat_urllib_parse_urlparse(url).scheme
                 width_str, height_str = fmt.get('resolution').split('x')
                 tbr = int(fmt.get('bitrate', 0))