diff options
| author | Remita Amine <remitamine@gmail.com> | 2016-10-19 14:57:12 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2016-10-19 14:57:12 +0100 | 
| commit | 0384932e3d3566835014f8f48edd47d2ccfa4ea9 (patch) | |
| tree | 5dd195aee7d92ad9b57787a375c9b9da516fd671 /youtube_dl/extractor/common.py | |
| parent | edd6074ceac8b879382f9000cf8883b5e357776e (diff) | |
[extractor/common] try to extract non smil wowza mpd manifests
Diffstat (limited to 'youtube_dl/extractor/common.py')
| -rw-r--r-- | youtube_dl/extractor/common.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 0cbb97aae..415dc84c8 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1884,11 +1884,11 @@ class InfoExtractor(object):              formats.extend(self._extract_f4m_formats(                  http_base_url + '/manifest.f4m',                  video_id, f4m_id='hds', fatal=False)) +        if 'dash' not in skip_protocols: +            formats.extend(self._extract_mpd_formats( +                http_base_url + '/manifest.mpd', +                video_id, mpd_id='dash', fatal=False))          if re.search(r'(?:/smil:|\.smil)', url_base): -            if 'dash' not in skip_protocols: -                formats.extend(self._extract_mpd_formats( -                    http_base_url + '/manifest.mpd', -                    video_id, mpd_id='dash', fatal=False))              if 'smil' not in skip_protocols:                  rtmp_formats = self._extract_smil_formats(                      http_base_url + '/jwplayer.smil', | 
