diff options
author | Remita Amine <remitamine@gmail.com> | 2016-10-19 16:24:43 +0100 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2016-11-02 01:54:45 +0700 |
commit | 639e3b5c9985aacf7c0dc018c211a78161bbafd2 (patch) | |
tree | 8bd8da7f0ee1e19bf4a544a5f7b3480d785ec590 /youtube_dl/extractor/msn.py | |
parent | b2758123c5e759fdb0c7d23d380e4dd9e245cd4a (diff) |
extract ISM formats in some of the extractors
Diffstat (limited to 'youtube_dl/extractor/msn.py')
-rw-r--r-- | youtube_dl/extractor/msn.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/msn.py b/youtube_dl/extractor/msn.py index 1ec8e0f50..d75ce8b3b 100644 --- a/youtube_dl/extractor/msn.py +++ b/youtube_dl/extractor/msn.py @@ -69,10 +69,9 @@ class MSNIE(InfoExtractor): if not format_url: continue ext = determine_ext(format_url) - # .ism is not yet supported (see - # https://github.com/rg3/youtube-dl/issues/8118) if ext == 'ism': - continue + formats.extend(self._extract_ism_formats( + format_url + '/Manifest', display_id, 'mss', fatal=False)) if 'm3u8' in format_url: # m3u8_native should not be used here until # https://github.com/rg3/youtube-dl/issues/9913 is fixed |