commit: bb6f112d9d57d7c6260de132cad604c1c05bc5a0
parent c17eb5b4b06cfa2c8bffb378b0a5c84d4c5a6834
Author: Sergey M․ <dstftw@gmail.com>
Date: Tue, 5 Mar 2019 23:57:39 +0700
[npo] Improve ISM extraction
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py
@@ -238,7 +238,7 @@ class NPOIE(NPOBaseIE):
formats.extend(self._extract_m3u8_formats(
stream_url, video_id, ext='mp4',
entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
- elif '.ism/Manifest' in stream_url:
+ elif re.search(r'\.isml?/Manifest', stream_url):
formats.extend(self._extract_ism_formats(
stream_url, video_id, ism_id='mss', fatal=False))
else: