aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/onet.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-10-19 16:24:43 +0100
committerSergey M <dstftw@gmail.com>2016-11-02 01:54:45 +0700
commit639e3b5c9985aacf7c0dc018c211a78161bbafd2 (patch)
tree8bd8da7f0ee1e19bf4a544a5f7b3480d785ec590 /youtube_dl/extractor/onet.py
parentb2758123c5e759fdb0c7d23d380e4dd9e245cd4a (diff)
downloadyoutube-dl-639e3b5c9985aacf7c0dc018c211a78161bbafd2.tar.xz
extract ISM formats in some of the extractors
Diffstat (limited to 'youtube_dl/extractor/onet.py')
-rw-r--r--youtube_dl/extractor/onet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/onet.py b/youtube_dl/extractor/onet.py
index 9cbc7c2e2..0a501b3e5 100644
--- a/youtube_dl/extractor/onet.py
+++ b/youtube_dl/extractor/onet.py
@@ -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))