From 639e3b5c9985aacf7c0dc018c211a78161bbafd2 Mon Sep 17 00:00:00 2001 From: Remita Amine Date: Wed, 19 Oct 2016 16:24:43 +0100 Subject: extract ISM formats in some of the extractors --- youtube_dl/extractor/tvp.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'youtube_dl/extractor/tvp.py') diff --git a/youtube_dl/extractor/tvp.py b/youtube_dl/extractor/tvp.py index 2dbbc2c..06ea2b4 100644 --- a/youtube_dl/extractor/tvp.py +++ b/youtube_dl/extractor/tvp.py @@ -139,6 +139,9 @@ class TVPEmbedIE(InfoExtractor): # formats.extend(self._extract_mpd_formats( # video_url_base + '.ism/video.mpd', # video_id, mpd_id='dash', fatal=False)) + formats.extend(self._extract_ism_formats( + video_url_base + '.ism/Manifest', + video_id, 'mss', fatal=False)) formats.extend(self._extract_f4m_formats( video_url_base + '.ism/video.f4m', video_id, f4m_id='hds', fatal=False)) -- cgit v1.1