extract ISM formats in some of the extractors
[youtube-dl] / youtube_dl / extractor / onet.py
index 9cbc7c2e2f8888f32722f95d816dea4fdb9325db..0a501b3e5b9f0c0bd2c6789e4da302b7610ced28 100644 (file)
@@ -56,8 +56,8 @@ class OnetBaseIE(InfoExtractor):
                         continue
                     ext = determine_ext(video_url)
                     if format_id == 'ism':
-                        # TODO: Support Microsoft Smooth Streaming
-                        continue
+                        formats.extend(self._extract_ism_formats(
+                            video_url, video_id, 'mss', fatal=False))
                     elif ext == 'mpd':
                         formats.extend(self._extract_mpd_formats(
                             video_url, video_id, mpd_id='dash', fatal=False))