X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fmsn.py;h=d75ce8b3b510b68ca0dfe754d8fcf1741e6cbd9d;hb=22979993e7afd0b8792011ead3d64d3945703ce8;hp=d4569e32545a3773d8b0a303d94a095c0176170b;hpb=f1f336322da6e719cf4298b08680c3e903e956c4;p=youtube-dl diff --git a/youtube_dl/extractor/msn.py b/youtube_dl/extractor/msn.py index d4569e325..d75ce8b3b 100644 --- a/youtube_dl/extractor/msn.py +++ b/youtube_dl/extractor/msn.py @@ -38,6 +38,9 @@ class MSNIE(InfoExtractor): # geo restricted 'url': 'http://www.msn.com/en-ae/foodanddrink/joinourtable/the-first-fart-makes-you-laugh-the-last-fart-makes-you-cry/vp-AAhzIBU', 'only_matching': True, + }, { + 'url': 'http://www.msn.com/en-ae/entertainment/bollywood/watch-how-salman-khan-reacted-when-asked-if-he-would-apologize-for-his-‘raped-woman’-comment/vi-AAhvzW6', + 'only_matching': True, }] def _real_extract(self, url): @@ -66,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