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/tvp.py | |
parent | b2758123c5e759fdb0c7d23d380e4dd9e245cd4a (diff) |
extract ISM formats in some of the extractors
Diffstat (limited to 'youtube_dl/extractor/tvp.py')
-rw-r--r-- | youtube_dl/extractor/tvp.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/tvp.py b/youtube_dl/extractor/tvp.py index 2dbbc2ca7..06ea2b40a 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)) |